projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c9bcf2
)
Added a stub implementation of fixFuncEventAddr to get past linker errors.
author
Gabe Black
<gblack@eecs.umich.edu>
Tue, 7 Nov 2006 10:41:23 +0000
(
05:41
-0500)
committer
Gabe Black
<gblack@eecs.umich.edu>
Tue, 7 Nov 2006 10:41:23 +0000
(
05:41
-0500)
--HG--
extra : convert_revision :
24ab1789496c5fae6c0992db2d521ea02354ee90
src/arch/sparc/system.hh
patch
|
blob
|
history
diff --git
a/src/arch/sparc/system.hh
b/src/arch/sparc/system.hh
index 3c8c6327ef8966ccede499371ea315c86257b3a7..0b79eda38cf276757698f0fc8cb676565240f755 100644
(file)
--- a/
src/arch/sparc/system.hh
+++ b/
src/arch/sparc/system.hh
@@
-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