aboutsummaryrefslogtreecommitdiff
path: root/sim/common/sim-config.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-06-23 23:42:29 +0545
committerMike Frysinger <vapier@gentoo.org>2015-06-23 14:05:38 -0400
commit4953dc20941a48eed02b575cec29d8de419f87eb (patch)
tree5bb8809f04cbdf655e123f8df0d5ae74b3cdce62 /sim/common/sim-config.h
parentb50a153264dae2267e3846772819515c648e3c97 (diff)
downloadfsf-binutils-gdb-4953dc20941a48eed02b575cec29d8de419f87eb.zip
fsf-binutils-gdb-4953dc20941a48eed02b575cec29d8de419f87eb.tar.gz
fsf-binutils-gdb-4953dc20941a48eed02b575cec29d8de419f87eb.tar.bz2
sim: trace: do not enable internal debug by default
Since --trace-debug is for people hacking on the sim sources rather than people just using the sim, default it to off. This matches the behavior of other debug knobs we have.
Diffstat (limited to 'sim/common/sim-config.h')
-rw-r--r--sim/common/sim-config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/common/sim-config.h b/sim/common/sim-config.h
index bf7428c..f4fe076 100644
--- a/sim/common/sim-config.h
+++ b/sim/common/sim-config.h
@@ -487,10 +487,10 @@ extern int current_floating_point;
#endif
/* Include the tracing code. Disabling this eliminates all tracing
- code */
+ code. Default to all tracing but internal debug. */
#ifndef WITH_TRACE
-#define WITH_TRACE (-1)
+#define WITH_TRACE (~TRACE_debug)
#endif
/* Include the profiling code. Disabling this eliminates all profiling