aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@redhat.com>2021-10-20 13:41:12 -0400
committerAndrew MacLeod <amacleod@redhat.com>2021-10-25 10:43:06 -0400
commit17d26698aa31268acdf5e1d4d0bc363dd35378ac (patch)
treeb79e9e557516e992e1071648efd46ab6fef512c2
parent2bfb21bb8ce16698926576870e4b1f2609e0c909 (diff)
downloadgcc-17d26698aa31268acdf5e1d4d0bc363dd35378ac.zip
gcc-17d26698aa31268acdf5e1d4d0bc363dd35378ac.tar.gz
gcc-17d26698aa31268acdf5e1d4d0bc363dd35378ac.tar.bz2
Always output exported ranges to a dump_file.
* gimple-range.cc (gimple_ranger::export_global_ranges): Remove check for TDF_DETAILS.
-rw-r--r--gcc/gimple-range.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-range.cc b/gcc/gimple-range.cc
index 69cde91..91bacda 100644
--- a/gcc/gimple-range.cc
+++ b/gcc/gimple-range.cc
@@ -303,7 +303,7 @@ gimple_ranger::export_global_ranges ()
&& !r.varying_p())
{
bool updated = update_global_range (r, name);
- if (!updated || !dump_file || !(dump_flags & TDF_DETAILS))
+ if (!updated || !dump_file)
continue;
if (print_header)