[PATCH] Fix build error

Richard Biener rguenther@suse.de
Tue Nov 7 13:12:00 GMT 2017


Recent commit to match.pd broke the build.

Fixed as follows, committed as obvious after build went past error.

Richard.

2017-11-07  Richard Biener  <rguenther@suse.de>

	* match.pd: Fix build.

Index: gcc/match.pd
===================================================================
--- gcc/match.pd	(revision 254497)
+++ gcc/match.pd	(working copy)
@@ -615,7 +615,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
 (simplify
  (lshift integer_onep@0 (minus@1 INTEGER_CST@2 @3))
   (if (INTEGRAL_TYPE_P (type)
-       && wi::eq_p (@2, TYPE_PRECISION (type) - 1)
+       && wi::eq_p (wi::to_wide (@2), TYPE_PRECISION (type) - 1)
        && single_use (@1))
    (if (TYPE_UNSIGNED (type))
      (rshift (lshift @0 @2) @3)



More information about the Gcc-patches mailing list