Minor updates.
authorKevin Lim <ktlim@umich.edu>
Sun, 18 Jun 2006 02:55:00 +0000 (22:55 -0400)
committerKevin Lim <ktlim@umich.edu>
Sun, 18 Jun 2006 02:55:00 +0000 (22:55 -0400)
src/cpu/o3/alpha_cpu.hh:
    Fix #define in header.
util/rundiff:
    Fix file comments to be more correct.
util/tracediff:
    Update comments to be more correct.

--HG--
extra : convert_revision : a28030ce8979de3d9361191c6af23743460dc53e

src/cpu/o3/alpha_cpu.hh
util/rundiff
util/tracediff

index 4daa8b3ba98f2ff70db83c49d347a708aa4d1c94..55b9751420c7cb3964963bc31dec738dc9fc128e 100644 (file)
@@ -28,8 +28,8 @@
  * Authors: Kevin Lim
  */
 
-#ifndef __CPU_O3_ALPHA_FULL_CPU_HH__
-#define __CPU_O3_ALPHA_FULL_CPU_HH__
+#ifndef __CPU_O3_ALPHA_CPU_HH__
+#define __CPU_O3_ALPHA_CPU_HH__
 
 #include "arch/isa_traits.hh"
 #include "cpu/thread_context.hh"
@@ -431,4 +431,4 @@ class AlphaO3CPU : public FullO3CPU<Impl>
     bool lockFlag;
 };
 
-#endif // __CPU_O3_ALPHA_FULL_CPU_HH__
+#endif // __CPU_O3_ALPHA_CPU_HH__
index 533f448b10cca85731a0108a49a28922bd9fd83e..c34bb53a3fc1e9171b16bfae5630ff5549c321d4 100755 (executable)
@@ -39,7 +39,7 @@
 # "filename" is a pipe (|).  Thus to compare the instruction traces
 # from two versions of m5 (m5a and m5b), you can do this:
 #
-# rundiff 'm5a --trace:flags=InstExec |' 'm5b --trace:flags=InstExec |'
+# rundiff 'm5a --traceflags=InstExec |' 'm5b --traceflags=InstExec |'
 #
 
 use strict;
index f11431293df0a8bca2b1403a1c0900dce464993f..a7efc260d553dab1ff1cccbbf54b6c8b722f2d4b 100755 (executable)
@@ -1,5 +1,5 @@
 #! /usr/bin/env perl
-# Copyright (c) 2003-2005 The Regents of The University of Michigan
+# Copyright (c) 2003-2006 The Regents of The University of Michigan
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
@@ -36,7 +36,7 @@
 # If you want to pass different arguments to the two instances of m5,
 # you can embed them in the simulator arguments like this:
 #
-# % tracediff "m5.opt --foo.bar=1" "m5.opt --foo.bar=2" [common args]
+# % tracediff "m5.opt --option1" "m5.opt --option2" [common args]
 #
 
 if (@ARGV < 2) {