https://gcc.gnu.org/g:3b443e764144526748d2b51d017d745f1956377e

commit r17-2158-g3b443e764144526748d2b51d017d745f1956377e
Author: Kael Andrew Alonzo Franco <[email protected]>
Date:   Sat Jul 4 22:02:25 2026 -0400

    match: Fix #ifdef GIMPLE typo [PR125641]
    
    r17-1683-g43356828d897ad uses #ifdef GIMPLE but it should be #if GIMPLE.
    
    Bootstrapped and tested on x86_64-pc-linux-gnu.
    
            PR tree-optimization/125641
    
    gcc/ChangeLog:
    
            * match.pd: Fix #ifdef GIMPLE typo.
    
    Signed-off-by: Kael Franco <[email protected]>

Diff:
---
 gcc/match.pd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/match.pd b/gcc/match.pd
index 7da15cc4cdc2..a7cec25dbad8 100644
--- a/gcc/match.pd
+++ b/gcc/match.pd
@@ -5171,7 +5171,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
    Fold x & (x >> (TYPE_PRECISION (type) - 1)) to min (x, 0)
    Fold x & (~ (x >> (TYPE_PRECISION (type) - 1))) to max (x, 0)
 */
-#ifdef GIMPLE
+#if GIMPLE
 (for bitop (bit_ior bit_and)
      result (max min)
      rresult (min max)

Reply via email to