Skip to content

Commit

Permalink
Fix incorrect address calculation in invalidateWord()
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Osborne committed May 13, 2012
1 parent 533685a commit 8a34f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class Core {
bool invalidateWord(uint32_t address) {
if (!invalidateWordCheck(address))
return false;
invalidateWordSlowPath(address);
invalidateWordSlowPath(address >> 1);
return true;
}

Expand Down

0 comments on commit 8a34f77

Please sign in to comment.