From: Andrew MacLeod Date: Mon, 1 Nov 2021 20:40:45 +0000 (-0400) Subject: Fix --param=ranger-debug=all to include a trace. X-Git-Tag: basepoints/gcc-13~3446 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=309bb7ff6e2807ecd849c133c3639705f20e5894;p=thirdparty%2Fgcc.git Fix --param=ranger-debug=all to include a trace. A recent change made each debug flag its own value, but the 'all' value was not adjusted properly and 'trace' was left out. * flag-types.h (RANGER_DEBUG_ALL): Fix values. --- diff --git a/gcc/flag-types.h b/gcc/flag-types.h index 7cf8c28933b2..459e3e07016f 100644 --- a/gcc/flag-types.h +++ b/gcc/flag-types.h @@ -458,7 +458,8 @@ enum ranger_debug RANGER_DEBUG_GORI = 4, RANGER_DEBUG_TRACE_GORI = (RANGER_DEBUG_TRACE | RANGER_DEBUG_GORI), RANGER_DEBUG_TRACE_CACHE = (RANGER_DEBUG_TRACE | RANGER_DEBUG_CACHE), - RANGER_DEBUG_ALL = (RANGER_DEBUG_GORI | RANGER_DEBUG_CACHE) + RANGER_DEBUG_ALL = (RANGER_DEBUG_GORI | RANGER_DEBUG_CACHE + | RANGER_DEBUG_TRACE) }; /* EVRP mode. */