]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
split-path: Fix dump wording about duplicating too many statements
authorAndrew Pinski <quic_apinski@quicinc.com>
Sat, 7 Sep 2024 18:43:03 +0000 (11:43 -0700)
committerAndrew Pinski <quic_apinski@quicinc.com>
Sat, 7 Sep 2024 19:08:59 +0000 (12:08 -0700)
It was pointed out in https://gcc.gnu.org/pipermail/gcc-patches/2024-September/662183.html,
that the wording with this print has too many words.
Fixed thusly.

Pushed as obvious after a build and test for x86_64-linux-gnu.

gcc/ChangeLog:

* gimple-ssa-split-paths.cc (is_feasible_trace): Fix wording
on the print.

Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
gcc/gimple-ssa-split-paths.cc

index 32b5c445760e97248133632cc02e49989e59f03d..886d85a94e47ad6630436471a88ef0533a35e97c 100644 (file)
@@ -208,7 +208,7 @@ is_feasible_trace (basic_block bb)
     {
       if (dump_file && (dump_flags & TDF_DETAILS))
        fprintf (dump_file,
-                "Duplicating block %d would be too duplicate "
+                "Duplicating block %d would duplicate "
                 "too many statments: %d >= %d\n",
                 bb->index, num_stmts_in_join,
                 param_max_jump_thread_duplication_stmts);