summaryrefslogtreecommitdiff
path: root/src/cpu/rubytest/CheckTable.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/rubytest/CheckTable.cc')
-rw-r--r--src/cpu/rubytest/CheckTable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/rubytest/CheckTable.cc b/src/cpu/rubytest/CheckTable.cc
index 3b94de315..7588007c9 100644
--- a/src/cpu/rubytest/CheckTable.cc
+++ b/src/cpu/rubytest/CheckTable.cc
@@ -102,7 +102,7 @@ CheckTable::addCheck(const Address& address)
// Insert it once per byte
m_lookup_map_ptr->add(Address(address.getAddress() + i), check_ptr);
}
- m_check_vector.insertAtBottom(check_ptr);
+ m_check_vector.push_back(check_ptr);
}
Check*