From: Gabe Black Date: Tue, 7 Nov 2006 10:41:23 +0000 (-0500) Subject: Added a stub implementation of fixFuncEventAddr to get past linker errors. X-Git-Tag: m5_2.0_beta2~53^2~32 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=74112dec522ace81203966b40d1e4b34773b01db;p=gem5.git Added a stub implementation of fixFuncEventAddr to get past linker errors. --HG-- extra : convert_revision : 24ab1789496c5fae6c0992db2d521ea02354ee90 --- diff --git a/src/arch/sparc/system.hh b/src/arch/sparc/system.hh index 3c8c6327e..0b79eda38 100644 --- a/src/arch/sparc/system.hh +++ b/src/arch/sparc/system.hh @@ -111,8 +111,11 @@ class SparcSystem : public System return addFuncEvent(openbootSymtab, lbl); } - virtual Addr fixFuncEventAddr(Addr addr); - + virtual Addr fixFuncEventAddr(Addr addr) + { + //XXX This may eventually have to do something useful. + return addr; + } }; #endif