changeset d43eb1203aec in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=d43eb1203aec
description:
X86 TLB: Add a missing = sign
diffstat:
src/arch/x86/tlb.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 965c042379df -r d43eb1203aec src/arch/x86/tlb.cc
--- a/src/arch/x86/tlb.cc Thu Jun 07 10:59:03 2012 -0400
+++ b/src/arch/x86/tlb.cc Thu Jun 07 17:03:45 2012 -0500
@@ -101,7 +101,7 @@
// If somebody beat us to it, just use that existing entry.
TlbEntry *newEntry = trie.lookup(vpn);
if (newEntry) {
- assert(newEntry->vaddr = vpn);
+ assert(newEntry->vaddr == vpn);
return newEntry;
}
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev