summaryrefslogtreecommitdiff
path: root/src/cpu/exetrace.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/exetrace.cc')
-rw-r--r--src/cpu/exetrace.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cpu/exetrace.cc b/src/cpu/exetrace.cc
index 3fe40b4c1..dc76ae189 100644
--- a/src/cpu/exetrace.cc
+++ b/src/cpu/exetrace.cc
@@ -401,7 +401,11 @@ Trace::InstRecord::dump(ostream &outs)
diffCcr || diffTl || diffGl || diffAsi || diffPil ||
diffCwp || diffCansave || diffCanrestore ||
diffOtherwin || diffCleanwin)
- && !((staticInst->machInst & 0xC1F80000) == 0x81D00000)) {
+ && !((staticInst->machInst & 0xC1F80000) == 0x81D00000)
+ && !((staticInst->machInst & 0xC1F80000) == 0xC0580000)
+ && !((staticInst->machInst & 0xC1F80000) == 0xC0000000)
+ && !((staticInst->machInst & 0xC1F80000) == 0xC0700000)) {
+
outs << "Differences found between M5 and Legion:";
if (diffPC)
outs << " [PC]";