From: Mike Frysinger Date: Tue, 23 Jun 2015 17:57:29 +0000 (+0545) Subject: sim: trace: do not enable internal debug by default X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4953dc20941a48eed02b575cec29d8de419f87eb;p=binutils-gdb.git 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. --- diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 0f0773deb81..c0ddbcab78a 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,7 @@ +2015-06-23 Mike Frysinger + + * sim-config.h (WITH_TRACE): Define to ~TRACE_debug. + 2015-06-23 Mike Frysinger * cgen-trace.c [!__STDC__]: Delete. diff --git a/sim/common/sim-config.h b/sim/common/sim-config.h index bf7428ca5a9..f4fe076ba16 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