]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix --param=ranger-debug=all to include a trace.
authorAndrew MacLeod <amacleod@redhat.com>
Mon, 1 Nov 2021 20:40:45 +0000 (16:40 -0400)
committerAndrew MacLeod <amacleod@redhat.com>
Wed, 3 Nov 2021 14:13:32 +0000 (10:13 -0400)
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.

gcc/flag-types.h

index 7cf8c28933b2b410fa1bac77a9cabc68642b023a..459e3e07016f1887b74514ed0a0c771ee4a0b080 100644 (file)
@@ -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.  */