Added a stub implementation of fixFuncEventAddr to get past linker errors.

--HG--
extra : convert_revision : 24ab1789496c5fae6c0992db2d521ea02354ee90
This commit is contained in:
Gabe Black 2006-11-07 05:41:23 -05:00
parent 0c9bcf209a
commit 74112dec52

View file

@ -111,8 +111,11 @@ class SparcSystem : public System
return addFuncEvent<T>(openbootSymtab, lbl);
}
virtual Addr fixFuncEventAddr(Addr addr);
virtual Addr fixFuncEventAddr(Addr addr)
{
//XXX This may eventually have to do something useful.
return addr;
}
};
#endif