diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2011-07-03 11:38:25 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2011-07-03 11:38:25 -0500 |
commit | 9b85b4b19a1f39927ce9d4f39e5815ec6c87fbf7 (patch) | |
tree | 482974f9e6a85b6867ff5f9f3fb1f891f0fdf96d /util/tracediff | |
parent | 5e0851d554d55e4fa22240c803cc4b9ad5e293f5 (diff) | |
parent | ec89fffb07318e50e90257ebeb17535bf6787952 (diff) | |
download | gem5-9b85b4b19a1f39927ce9d4f39e5815ec6c87fbf7.tar.xz |
Merged with Gabe's recent changes.
Diffstat (limited to 'util/tracediff')
-rwxr-xr-x | util/tracediff | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/tracediff b/util/tracediff index 5349c303d..5c77d9caf 100755 --- a/util/tracediff +++ b/util/tracediff @@ -124,11 +124,11 @@ $sim2 = shift @cmd2; $args1 = join(' ', @cmd1); $args2 = join(' ', @cmd2); -# Common mistake: if you don't set any traceflags this often isn't +# Common mistake: if you don't set any debugflags this often isn't # doing what you want. -if ($args1 !~ /--trace-flags/) { +if ($args1 !~ /--debug-flags/) { print "****\n"; - print "**** WARNING: no trace flags set... you may not be diffing much!\n"; + print "**** WARNING: no debug flags set... you may not be diffing much!\n"; print "****\n"; } |