projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9093cb7
)
Make the "name" function const.
author
Gabe Black
<gblack@eecs.umich.edu>
Sat, 21 Jul 2007 01:24:46 +0000
(18:24 -0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Sat, 21 Jul 2007 01:24:46 +0000
(18:24 -0700)
--HG--
extra : convert_revision :
eb71bc3edd92a544a5333786635fce550aaef233
src/arch/x86/faults.hh
patch
|
blob
|
history
diff --git
a/src/arch/x86/faults.hh
b/src/arch/x86/faults.hh
index 8c9afcdb56653048258446343cb36253569a9965..51c34cebd910ec533e1414377b869cee88bd3258 100644
(file)
--- a/
src/arch/x86/faults.hh
+++ b/
src/arch/x86/faults.hh
@@
-66,7
+66,7
@@
namespace X86ISA
class X86Fault : public FaultBase
{
protected:
- const char * name()
+ const char * name()
const
{
return "generic_x86_fault";
}
@@
-80,7
+80,7
@@
namespace X86ISA
class UnimpInstFault : public FaultBase
{
public:
- const char * name()
+ const char * name()
const
{
return "unimplemented_micro";
}