]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
pair-fusion: Tweak wording in dump message [PR118320]
authorAlex Coplan <alex.coplan@arm.com>
Tue, 18 Feb 2025 10:48:50 +0000 (10:48 +0000)
committerAlex Coplan <alex.coplan@arm.com>
Tue, 18 Feb 2025 10:48:50 +0000 (10:48 +0000)
As discussed in
https://gcc.gnu.org/pipermail/gcc-patches/2025-February/675978.html
this tweaks the dump messasge added with the fix for PR118320 since it doesn't
just apply to load pairs.

gcc/ChangeLog:

PR rtl-optimization/118320
* pair-fusion.cc (pair_fusion_bb_info::fuse_pair): Tweak wording in dump
message when punting on invalid use arrays.

gcc/pair-fusion.cc

index 5708d0f3b671b3303cfda0649215d8550e89f545..72e6424653405ddd8ef429f4637933c7be1e234b 100644 (file)
@@ -1742,7 +1742,7 @@ pair_fusion_bb_info::fuse_pair (bool load_p,
     {
       if (dump_file)
        fprintf (dump_file,
-                "  load pair: i%d and i%d use different definiitions of"
+                "  rejecting pair: i%d and i%d use different definiitions of"
                 " the same register\n",
                 insns[0]->uid (), insns[1]->uid ());
       return false;