From: Gabe Black Date: Sun, 17 Dec 2006 16:16:04 +0000 (-0500) Subject: Compilation fixes. X-Git-Tag: m5_2.0_beta3~271^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=81996f855a2ffb05c70e904040c5da42a0666545;p=gem5.git Compilation fixes. --HG-- extra : convert_revision : 4932ab507580e0c9f7012398e71921ce58fc3c4e --- 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 - T *SparcSystem::addResetFuncEvent(const char *lbl) + T *addResetFuncEvent(const char *lbl) { return addFuncEvent(resetSymtab, lbl); } /** Add a function-based event to the hypervisor. */ template - T *SparcSystem::addHypervisorFuncEvent(const char *lbl) + T *addHypervisorFuncEvent(const char *lbl) { return addFuncEvent(hypervisorSymtab, lbl); } /** Add a function-based event to the openboot. */ template - T *SparcSystem::addOpenbootFuncEvent(const char *lbl) + T *addOpenbootFuncEvent(const char *lbl) { return addFuncEvent(openbootSymtab, lbl); }