diff options
author | Gabe Black <gabeblack@google.com> | 2017-11-30 17:36:53 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-12-04 23:10:55 +0000 |
commit | 1088f0c4ac3999fc3c363cc51daef4cfb360a2bd (patch) | |
tree | 64b3cc0b13bd6ba6aa375163765d36b385d32663 /src/mem/ruby/system | |
parent | 86f18f26fc7223cc8a63a792d2be1267f573f97c (diff) | |
download | gem5-1088f0c4ac3999fc3c363cc51daef4cfb360a2bd.tar.xz |
misc: Rename misc.(hh|cc) to logging.(hh|cc)
These files aren't a collection of miscellaneous stuff, they're the
definition of the Logger interface, and a few utility macros for
calling into that interface (panic, warn, etc.).
Change-Id: I84267ac3f45896a83c0ef027f8f19c5e9a5667d1
Reviewed-on: https://gem5-review.googlesource.com/6226
Reviewed-by: Brandon Potter <Brandon.Potter@amd.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/mem/ruby/system')
-rw-r--r-- | src/mem/ruby/system/GPUCoalescer.cc | 2 | ||||
-rw-r--r-- | src/mem/ruby/system/Sequencer.cc | 2 | ||||
-rw-r--r-- | src/mem/ruby/system/VIPERCoalescer.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/ruby/system/GPUCoalescer.cc b/src/mem/ruby/system/GPUCoalescer.cc index a615c40fd..d874b84e5 100644 --- a/src/mem/ruby/system/GPUCoalescer.cc +++ b/src/mem/ruby/system/GPUCoalescer.cc @@ -33,7 +33,7 @@ * Author: Sooraj Puthoor */ -#include "base/misc.hh" +#include "base/logging.hh" #include "base/str.hh" #include "config/the_isa.hh" diff --git a/src/mem/ruby/system/Sequencer.cc b/src/mem/ruby/system/Sequencer.cc index 541b52138..4037fb8f1 100644 --- a/src/mem/ruby/system/Sequencer.cc +++ b/src/mem/ruby/system/Sequencer.cc @@ -29,7 +29,7 @@ #include "mem/ruby/system/Sequencer.hh" #include "arch/x86/ldstflags.hh" -#include "base/misc.hh" +#include "base/logging.hh" #include "base/str.hh" #include "cpu/testers/rubytest/RubyTester.hh" #include "debug/MemoryAccess.hh" diff --git a/src/mem/ruby/system/VIPERCoalescer.cc b/src/mem/ruby/system/VIPERCoalescer.cc index 6956469d5..04484bc97 100644 --- a/src/mem/ruby/system/VIPERCoalescer.cc +++ b/src/mem/ruby/system/VIPERCoalescer.cc @@ -33,7 +33,7 @@ * Author: Sooraj Puthoor */ -#include "base/misc.hh" +#include "base/logging.hh" #include "base/str.hh" #include "config/the_isa.hh" |