]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Match: Remove unnecessary convert for unsigned SAT_MUL
authorPan Li <pan2.li@intel.com>
Sat, 15 Nov 2025 03:22:23 +0000 (11:22 +0800)
committerPan Li <pan2.li@intel.com>
Sun, 23 Nov 2025 10:36:39 +0000 (18:36 +0800)
After we convert from bit_op outer into its captures, some
outer convert of unsigned SAT_MUL form 6 is unnecessary any
more.  Thus, remove it.  Meanwhile, add c after outer bit_ior
to make the test happy.

gcc/ChangeLog:

* match.pd: Remove unnecessary outer convert and add
c for the outer bit_ior.

Signed-off-by: Pan Li <pan2.li@intel.com>
gcc/match.pd

index 22b1bd054b0e69ecb24f07b8a9d2484d4363830c..bc31d7cc3f6a043cb850e03af376792a52c310d8 100644 (file)
@@ -3778,12 +3778,11 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
        return lo | -!!hi;
       } while WT is uint128_t, uint64_t, uint32_t, uint16_t,
        and T is uint64_t, uint32_t, uint16_t, uint8_t.  */
-   (convert1?
-    (bit_ior
-     (convert?
-      (negate
-       (convert (ne (convert2? (rshift @3 INTEGER_CST@2)) integer_zerop))))
-     (convert (usmul_widen_mult@3 @0 @1))))
+   (bit_ior:c
+    (convert?
+     (negate
+      (convert (ne (convert2? (rshift @3 INTEGER_CST@2)) integer_zerop))))
+    (convert (usmul_widen_mult@3 @0 @1)))
    (if (types_match (type, @0, @1))
     (with
      {