diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2021-11-01 16:40:45 -0400 |
---|---|---|
committer | Andrew MacLeod <amacleod@redhat.com> | 2021-11-03 10:13:32 -0400 |
commit | 309bb7ff6e2807ecd849c133c3639705f20e5894 (patch) | |
tree | 17b4546a402f57e388b706a7c9f3571b33b00cd0 /gcc | |
parent | fc4076752067fb400b43adbd629081df658da246 (diff) | |
download | gcc-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.h | 3 |
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. */ |