diff options
Diffstat (limited to 'cpu/beta_cpu/inst_queue.cc')
-rw-r--r-- | cpu/beta_cpu/inst_queue.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpu/beta_cpu/inst_queue.cc b/cpu/beta_cpu/inst_queue.cc new file mode 100644 index 000000000..c4fd077bc --- /dev/null +++ b/cpu/beta_cpu/inst_queue.cc @@ -0,0 +1,10 @@ + +#include "cpu/beta_cpu/alpha_dyn_inst.hh" +#include "cpu/beta_cpu/alpha_impl.hh" +#include "cpu/beta_cpu/inst_queue_impl.hh" + +// Force instantiation of InstructionQueue. +template InstructionQueue<AlphaSimpleImpl>; + +unsigned +InstructionQueue<AlphaSimpleImpl>::DependencyEntry::mem_alloc_counter = 0; |