base: Remove DDUMPN
It is not used in the codebase. It has been broken (not compilable)
since commit 105b2c8914.
Change-Id: I6fe048910ad1d39b6b10af509ba84aab1792b8fb
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/41335
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Gabe Black <gabe.black@gmail.com>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
This commit is contained in:
committed by
Daniel Carvalho
parent
649e5cd8e0
commit
c165fb3bce
@@ -172,7 +172,6 @@ class Named
|
||||
* \def DPRINTF(x, ...)
|
||||
* \def DPRINTFS(x, s, ...)
|
||||
* \def DPRINTFR(x, ...)
|
||||
* \def DDUMPN(data, count)
|
||||
* \def DPRINTFN(...)
|
||||
* \def DPRINTFNR(...)
|
||||
* \def DPRINTF_UNCONDITIONAL(x, ...)
|
||||
@@ -214,10 +213,6 @@ class Named
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define DDUMPN(data, count) do { \
|
||||
Trace::getDebugLogger()->dump(curTick(), name(), data, count); \
|
||||
} while (0)
|
||||
|
||||
#define DPRINTFN(...) do { \
|
||||
Trace::getDebugLogger()->dprintf(curTick(), name(), __VA_ARGS__); \
|
||||
} while (0)
|
||||
@@ -237,7 +232,6 @@ class Named
|
||||
#define DPRINTF(x, ...) do {} while (0)
|
||||
#define DPRINTFS(x, ...) do {} while (0)
|
||||
#define DPRINTFR(...) do {} while (0)
|
||||
#define DDUMPN(data, count) do {} while (0)
|
||||
#define DPRINTFN(...) do {} while (0)
|
||||
#define DPRINTFNR(...) do {} while (0)
|
||||
#define DPRINTF_UNCONDITIONAL(x, ...) do {} while (0)
|
||||
|
||||
Reference in New Issue
Block a user