diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2021-10-20 13:41:12 -0400 |
---|---|---|
committer | Andrew MacLeod <amacleod@redhat.com> | 2021-10-25 10:43:06 -0400 |
commit | 17d26698aa31268acdf5e1d4d0bc363dd35378ac (patch) | |
tree | b79e9e557516e992e1071648efd46ab6fef512c2 | |
parent | 2bfb21bb8ce16698926576870e4b1f2609e0c909 (diff) | |
download | gcc-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.cc | 2 |
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) |