summaryrefslogtreecommitdiff
path: root/cpu/ozone/rename_table_impl.hh
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/ozone/rename_table_impl.hh')
-rw-r--r--cpu/ozone/rename_table_impl.hh23
1 files changed, 0 insertions, 23 deletions
diff --git a/cpu/ozone/rename_table_impl.hh b/cpu/ozone/rename_table_impl.hh
deleted file mode 100644
index 86fc1cc55..000000000
--- a/cpu/ozone/rename_table_impl.hh
+++ /dev/null
@@ -1,23 +0,0 @@
-
-#include <cstdlib> // Not really sure what to include to get NULL
-#include "cpu/ozone/rename_table.hh"
-
-template <class Impl>
-RenameTable<Impl>::RenameTable()
-{
- // Actually should set these to dummy dyn insts that have the initial value
- // and force their values to be initialized. This keeps everything the
- // same.
- for (int i = 0; i < TheISA::TotalNumRegs; ++i) {
- table[i] = NULL;
- }
-}
-
-template <class Impl>
-void
-RenameTable<Impl>::copyFrom(const RenameTable<Impl> &table_to_copy)
-{
- for (int i = 0; i < TheISA::TotalNumRegs; ++i) {
- table[i] = table_to_copy.table[i];
- }
-}