middle-end/101858 - avoid shift of pointer in folding
authorRichard Biener <rguenther@suse.de>
Wed, 11 Aug 2021 08:26:18 +0000 (10:26 +0200)
committerRichard Biener <rguenther@suse.de>
Wed, 11 Aug 2021 10:55:24 +0000 (12:55 +0200)
This makes sure to not generate a shift of pointer types in
simplification of X < (cast) (1 << Y).

2021-08-11  Richard Biener  <rguenther@suse.de>

PR middle-end/101858
* fold-const.c (fold_binary_loc): Guard simplification
of  X < (cast) (1 << Y) to integer types.

* gcc.dg/pr101858.c: New testcase.

gcc/fold-const.c
gcc/testsuite/gcc.dg/pr101858.c [new file with mode: 0644]

index 7dcecc9..ff23f12 100644 (file)
@@ -12497,6 +12497,8 @@ fold_binary_loc (location_t loc, enum tree_code code, tree type,
         we can't optimize this.  E.g. (unsigned long long) (1 << Y) for Y
         31 might be 0xffffffff80000000.  */
       if ((code == LT_EXPR || code == GE_EXPR)
+         && (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
+             || VECTOR_INTEGER_TYPE_P (TREE_TYPE (arg0)))
          && TYPE_UNSIGNED (TREE_TYPE (arg0))
          && CONVERT_EXPR_P (arg1)
          && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
diff --git a/gcc/testsuite/gcc.dg/pr101858.c b/gcc/testsuite/gcc.dg/pr101858.c
new file mode 100644 (file)
index 0000000..61fcca6
--- /dev/null
@@ -0,0 +1,9 @@
+/* { dg-do compile } */
+/* { dg-options "-w" } */
+
+int foo(int a)
+{
+  if (a < (int*)((__INTPTR_TYPE__)1 << a))
+    a = 0;
+  return a;
+}