aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@redhat.com>2021-11-01 16:40:45 -0400
committerAndrew MacLeod <amacleod@redhat.com>2021-11-03 10:13:32 -0400
commit309bb7ff6e2807ecd849c133c3639705f20e5894 (patch)
tree17b4546a402f57e388b706a7c9f3571b33b00cd0 /gcc
parentfc4076752067fb400b43adbd629081df658da246 (diff)
downloadgcc-309bb7ff6e2807ecd849c133c3639705f20e5894.zip
gcc-309bb7ff6e2807ecd849c133c3639705f20e5894.tar.gz
gcc-309bb7ff6e2807ecd849c133c3639705f20e5894.tar.bz2
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.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/flag-types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/flag-types.h b/gcc/flag-types.h
index 7cf8c28..459e3e0 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. */