X86 TLB: Add a missing = sign
This commit is contained in:
parent
c80cd4136e
commit
d6609793d4
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ TLB::insert(Addr vpn, TlbEntry &entry)
|
||||||
// If somebody beat us to it, just use that existing entry.
|
// If somebody beat us to it, just use that existing entry.
|
||||||
TlbEntry *newEntry = trie.lookup(vpn);
|
TlbEntry *newEntry = trie.lookup(vpn);
|
||||||
if (newEntry) {
|
if (newEntry) {
|
||||||
assert(newEntry->vaddr = vpn);
|
assert(newEntry->vaddr == vpn);
|
||||||
return newEntry;
|
return newEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue