diff options
author | Giacomo Travaglini <giacomo.travaglini@arm.com> | 2019-11-27 10:19:21 +0000 |
---|---|---|
committer | Giacomo Travaglini <giacomo.travaglini@arm.com> | 2019-11-27 23:29:38 +0000 |
commit | b406cda15b1d3ffb48d9387f9a147e1ca94e199c (patch) | |
tree | 4de84a474e2657e8951adcbacb464d65d5572d07 | |
parent | 653dfec89ad6d3b8b10f1da7afddff7366e27c82 (diff) | |
download | gem5-b406cda15b1d3ffb48d9387f9a147e1ca94e199c.tar.xz |
base: Fix DPRINTF_UNCONDITIONAL on gem5.fast
Change-Id: I1e559f9c5daae1e9af307cd352791c1b1ac9bbdb
Reviewed-by: Ciro Santilli <ciro.santilli@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/23108
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
-rw-r--r-- | src/base/trace.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/base/trace.hh b/src/base/trace.hh index 0b136f931..6171cb318 100644 --- a/src/base/trace.hh +++ b/src/base/trace.hh @@ -232,6 +232,7 @@ class Named #define DDUMPN(data, count) do {} while (0) #define DPRINTFN(...) do {} while (0) #define DPRINTFNR(...) do {} while (0) +#define DPRINTF_UNCONDITIONAL(x, ...) do {} while (0) #endif // TRACING_ON |