X86 TLB: Add a missing = sign

This commit is contained in:
Nilay Vaish 2012-06-07 17:03:45 -05:00
parent c80cd4136e
commit d6609793d4

View file

@ -101,7 +101,7 @@ TLB::insert(Addr vpn, TlbEntry &entry)
// 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;
}