diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-06-17 22:55:00 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-06-17 22:55:00 -0400 |
commit | 14b9cda9f62cb5c7f580b08aefbf7797d0bc8a12 (patch) | |
tree | 1b8c84ecbfd3806c73123d023d001899cd874d9e /src/cpu/o3 | |
parent | d5b2abab9e2e404fcc68a25eee140fca358b7600 (diff) | |
download | gem5-14b9cda9f62cb5c7f580b08aefbf7797d0bc8a12.tar.xz |
Minor updates.
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
Diffstat (limited to 'src/cpu/o3')
-rw-r--r-- | src/cpu/o3/alpha_cpu.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cpu/o3/alpha_cpu.hh b/src/cpu/o3/alpha_cpu.hh index 4daa8b3ba..55b975142 100644 --- a/src/cpu/o3/alpha_cpu.hh +++ b/src/cpu/o3/alpha_cpu.hh @@ -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__ |