diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-01-29 17:35:53 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-01-29 17:35:53 -0500 |
commit | 0e79d188e1437d313f28bf6ee808b92ae0ce03a6 (patch) | |
tree | 5de454c80cb606c0a15bd239656c8d19cc82817f /cpu/exetrace.cc | |
parent | 07948528fcd38a3588c819a5176fc4902c0540a5 (diff) | |
download | gem5-0e79d188e1437d313f28bf6ee808b92ae0ce03a6.tar.xz |
Hacks to avoid compiling in old FullCPU model.
Needed in the interim until we port the old model over
to the new interface. Long term we should have a cleaner
solution for controlling which models get compiled in.
SConscript:
Move old FullCPU source file list to separate full_cpu_sources
list so we can choose to not include it in compile.
arch/isa_parser.py:
Hack to avoid generating FullCPU execute files.
Need a better way to control this.
cpu/exetrace.cc:
Don't include old FullCPU-specific headers (apparently
unnecessary anyway--or if not they should be).
--HG--
extra : convert_revision : 00d5a91a9e4d71507404b8c7f4c6e7c7b7ba3853
Diffstat (limited to 'cpu/exetrace.cc')
-rw-r--r-- | cpu/exetrace.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cpu/exetrace.cc b/cpu/exetrace.cc index 8393a1b85..5c7dc953c 100644 --- a/cpu/exetrace.cc +++ b/cpu/exetrace.cc @@ -30,9 +30,6 @@ #include <iomanip> #include "sim/param.hh" -#include "encumbered/cpu/full/dyn_inst.hh" -#include "encumbered/cpu/full/spec_state.hh" -#include "encumbered/cpu/full/issue.hh" #include "cpu/exetrace.hh" #include "cpu/exec_context.hh" #include "base/loader/symtab.hh" |