diff options
author | Steve Reinhardt <stever@gmail.com> | 2007-10-31 18:04:22 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@gmail.com> | 2007-10-31 18:04:22 -0700 |
commit | 4b49bd47f464fb3fe31a943b913edb565fa68423 (patch) | |
tree | 34cea1a1e0ed0365bcd6b64ed0c2510ed37ca00c /src/cpu | |
parent | 71b033f4dcd2b34a01256139e280489b8f0f69ee (diff) | |
download | gem5-4b49bd47f464fb3fe31a943b913edb565fa68423.tar.xz |
String constant const-ness changes to placate g++ 4.2.
Also some bug fixes in MIPS ISA uncovered by g++ warnings
(Python string compares don't work in C++!).
--HG--
extra : convert_revision : b347cc0108f23890e9b73b3ee96059f0cea96cf6
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/legiontrace.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/legiontrace.cc b/src/cpu/legiontrace.cc index d30343025..0ca02eeec 100644 --- a/src/cpu/legiontrace.cc +++ b/src/cpu/legiontrace.cc @@ -100,7 +100,7 @@ setupSharedData() // Utility methods for pretty printing a report about a difference // -inline char * genCenteredLabel(int length, char * buffer, char * label) +inline char * genCenteredLabel(int length, char * buffer, const char * label) { int labelLength = strlen(label); assert(labelLength <= length); @@ -127,7 +127,7 @@ inline void printColumnLabels(ostream & os) ccprintf(os, "--------------------+-----------------------+-----------------------\n"); } -inline void printSectionHeader(ostream & os, char * name) +inline void printSectionHeader(ostream & os, const char * name) { char sectionString[70]; genCenteredLabel(69, sectionString, name); |