diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-10-30 18:39:38 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-10-30 18:39:38 -0700 |
commit | 248033f31ea7198ab1339631cc198bb13935c2e8 (patch) | |
tree | b7ee90ef322e3f65351eb1c39518553b4691e750 /src/arch/mips/system.hh | |
parent | 8009b53c41b4b8643bc335ce293c6ba305b70608 (diff) | |
download | gem5-248033f31ea7198ab1339631cc198bb13935c2e8.tar.xz |
SE/FS: Get rid of FULL_SYSTEM in MIPS.
Diffstat (limited to 'src/arch/mips/system.hh')
-rwxr-xr-x | src/arch/mips/system.hh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/arch/mips/system.hh b/src/arch/mips/system.hh index 128f36581..fcaceadcd 100755 --- a/src/arch/mips/system.hh +++ b/src/arch/mips/system.hh @@ -66,7 +66,6 @@ class MipsSystem : public System */ void setMipsAccess(Addr access); -#if FULL_SYSTEM /** console symbol table */ SymbolTable *consoleSymtab; @@ -75,7 +74,6 @@ class MipsSystem : public System /** Used by some Bare Iron Configurations */ HexFile *hexFile; -#endif #ifndef NDEBUG /** Event to halt the simulator if the console calls panic() */ @@ -85,9 +83,7 @@ class MipsSystem : public System protected: const Params *params() const { return (const Params *)_params; } - -#if FULL_SYSTEM - /** Add a function-based event to the console code. */ + /** Add a function-based event to the console code. */ template <class T> T * addConsoleFuncEvent(const char *lbl) @@ -96,7 +92,6 @@ class MipsSystem : public System } virtual Addr fixFuncEventAddr(Addr addr); -#endif }; |