diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-07-21 01:08:53 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-07-21 01:08:53 -0700 |
commit | 7548082d3baf578fe984c79f414dbefd96091359 (patch) | |
tree | 2992c954757b4116244ce612dd0d7c63a3893f02 /src/arch/mips/system.hh | |
parent | dc0a017ed0ce192b2959ae0cc08522d04a4281a1 (diff) | |
download | gem5-7548082d3baf578fe984c79f414dbefd96091359.tar.xz |
MIPS: Many style fixes.
White space, commented out code, some other minor fixes.
Diffstat (limited to 'src/arch/mips/system.hh')
-rwxr-xr-x | src/arch/mips/system.hh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/arch/mips/system.hh b/src/arch/mips/system.hh index 13cd3a75f..cfdf316b3 100755 --- a/src/arch/mips/system.hh +++ b/src/arch/mips/system.hh @@ -54,10 +54,10 @@ class MipsSystem : public System virtual bool breakpoint(); -/** - * Serialization stuff - */ public: + /** + * Serialization stuff + */ virtual void serialize(std::ostream &os); virtual void unserialize(Checkpoint *cp, const std::string §ion); @@ -89,7 +89,8 @@ class MipsSystem : public System #if FULL_SYSTEM /** Add a function-based event to the console code. */ template <class T> - T *addConsoleFuncEvent(const char *lbl) + T * + addConsoleFuncEvent(const char *lbl) { return addFuncEvent<T>(consoleSymtab, lbl); } |