summaryrefslogtreecommitdiff
path: root/src/arch/sparc/tlb_map.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/sparc/tlb_map.hh')
-rw-r--r--src/arch/sparc/tlb_map.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/sparc/tlb_map.hh b/src/arch/sparc/tlb_map.hh
index 8285db939..fa49584ba 100644
--- a/src/arch/sparc/tlb_map.hh
+++ b/src/arch/sparc/tlb_map.hh
@@ -52,7 +52,7 @@ class TlbMap
i = tree.upper_bound(r);
- if (i == tree.begin())
+ if (i == tree.begin()) {
if (r.real == i->first.real &&
r.partitionId == i->first.partitionId &&
i->first.va < r.va + r.size &&
@@ -62,6 +62,7 @@ class TlbMap
else
// Nothing could match, so return end()
return tree.end();
+ }
i--;