diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-12-17 11:16:04 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-12-17 11:16:04 -0500 |
commit | 81996f855a2ffb05c70e904040c5da42a0666545 (patch) | |
tree | 0580a92516d60da9b875f780fd1706552967871c /src | |
parent | 729dbb60e918dbe08339ab6cc89917c3d8e24f26 (diff) | |
download | gem5-81996f855a2ffb05c70e904040c5da42a0666545.tar.xz |
Compilation fixes.
--HG--
extra : convert_revision : 4932ab507580e0c9f7012398e71921ce58fc3c4e
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/sparc/system.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/sparc/system.hh b/src/arch/sparc/system.hh index 5d50ea067..c81b093e8 100644 --- a/src/arch/sparc/system.hh +++ b/src/arch/sparc/system.hh @@ -133,21 +133,21 @@ class SparcSystem : public System /** Add a function-based event to reset binary. */ template <class T> - T *SparcSystem::addResetFuncEvent(const char *lbl) + T *addResetFuncEvent(const char *lbl) { return addFuncEvent<T>(resetSymtab, lbl); } /** Add a function-based event to the hypervisor. */ template <class T> - T *SparcSystem::addHypervisorFuncEvent(const char *lbl) + T *addHypervisorFuncEvent(const char *lbl) { return addFuncEvent<T>(hypervisorSymtab, lbl); } /** Add a function-based event to the openboot. */ template <class T> - T *SparcSystem::addOpenbootFuncEvent(const char *lbl) + T *addOpenbootFuncEvent(const char *lbl) { return addFuncEvent<T>(openbootSymtab, lbl); } |