diff options
Diffstat (limited to 'cpu/beta_cpu/inst_queue.cc')
-rw-r--r-- | cpu/beta_cpu/inst_queue.cc | 11 |
1 files changed, 11 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..cd660ac79 --- /dev/null +++ b/cpu/beta_cpu/inst_queue.cc @@ -0,0 +1,11 @@ + +#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 class InstructionQueue<AlphaSimpleImpl>; + +template<> +unsigned +InstructionQueue<AlphaSimpleImpl>::DependencyEntry::mem_alloc_counter = 0; |