diff options
author | Nathan Binkert <binkertn@umich.edu> | 2004-01-27 17:56:23 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2004-01-27 17:56:23 -0500 |
commit | 801c46d25049bbf1fea4c3b0f115b095b58e6323 (patch) | |
tree | 461e1a5ee499e3b7e547f457c1dfa6cfb7df3643 /arch/alpha | |
parent | ee6b889ad5a42233e7802970de4f6781c3d7a058 (diff) | |
download | gem5-801c46d25049bbf1fea4c3b0f115b095b58e6323.tar.xz |
a bunch of warning fixes
arch/alpha/isa_desc:
don't say warn: Warning:
base/misc.cc:
avoid printing two newlines in a row
sim/main.cc:
print out a message just before we enter the event queue
--HG--
extra : convert_revision : 2a824d4b67661903fc739a0fb0759aa91d72382c
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/isa_desc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/alpha/isa_desc b/arch/alpha/isa_desc index f0a4699f4..3533da09f 100644 --- a/arch/alpha/isa_desc +++ b/arch/alpha/isa_desc @@ -538,7 +538,7 @@ declare {{ trappingMode((enum TrappingMode)FP_TRAPMODE) { if (trappingMode != Imprecise) { - warn("Warning: precise FP traps unimplemented\n"); + warn("precise FP traps unimplemented\n"); } } @@ -1609,7 +1609,7 @@ declare {{ Trace::InstRecord *traceData) { if (!warned) { - warn("Warning: instruction '%s' unimplemented\n", mnemonic); + warn("instruction '%s' unimplemented\n", mnemonic); warned = true; } @@ -1620,7 +1620,7 @@ declare {{ Trace::InstRecord *traceData) { if (!xc->spec_mode && !warned) { - warn("Warning: instruction '%s' unimplemented\n", mnemonic); + warn("instruction '%s' unimplemented\n", mnemonic); warned = true; } |