Compilation fixes.
authorGabe Black <gblack@eecs.umich.edu>
Sun, 17 Dec 2006 16:16:04 +0000 (11:16 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Sun, 17 Dec 2006 16:16:04 +0000 (11:16 -0500)
--HG--
extra : convert_revision : 4932ab507580e0c9f7012398e71921ce58fc3c4e

src/arch/sparc/system.hh

index 5d50ea06777f0b329250aeb2ca60f1a3f7470aa0..c81b093e8d45d31731ff2300dc2d18650534fc21 100644 (file)
@@ -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);
     }