2016-03-30 Richard Biener <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Mar 2016 14:18:28 +0000 (14:18 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Mar 2016 14:18:28 +0000 (14:18 +0000)
PR middle-end/70450
* fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from
usage.

* gcc.dg/torture/pr70450.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234571 138bc75d-0d04-0410-961f-82ee72b054a4

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

index db870ff..35af4ec 100644 (file)
@@ -1,3 +1,9 @@
+2016-03-30  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/70450
+       * fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from
+       usage.
+
 2016-03-30  Jakub Jelinek  <jakub@redhat.com>
 
        PR target/70421
index 44fe2a2..788ecc3 100644 (file)
@@ -6375,8 +6375,10 @@ extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type,
          bool overflow_mul_p;
          signop sign = TYPE_SIGN (ctype);
          unsigned prec = TYPE_PRECISION (ctype);
-         wide_int mul = wi::mul (wide_int::from (op1, prec, sign),
-                                 wide_int::from (c, prec, sign),
+         wide_int mul = wi::mul (wide_int::from (op1, prec,
+                                                 TYPE_SIGN (TREE_TYPE (op1))),
+                                 wide_int::from (c, prec,
+                                                 TYPE_SIGN (TREE_TYPE (c))),
                                  sign, &overflow_mul_p);
          overflow_p = TREE_OVERFLOW (c) | TREE_OVERFLOW (op1);
          if (overflow_mul_p
index b2dfebf..658e6c5 100644 (file)
@@ -1,3 +1,8 @@
+2016-03-30  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/70450
+       * gcc.dg/torture/pr70450.c: New testcase.
+
 2016-03-30  Jakub Jelinek  <jakub@redhat.com>
 
        PR target/70421
diff --git a/gcc/testsuite/gcc.dg/torture/pr70450.c b/gcc/testsuite/gcc.dg/torture/pr70450.c
new file mode 100644 (file)
index 0000000..ee5e24d
--- /dev/null
@@ -0,0 +1,19 @@
+/* { dg-do run } */
+/* { dg-require-effective-target lp64 } */
+
+unsigned long int a = 2UL;
+int b = 2;
+unsigned long int c = 2UL;
+
+void foo ()
+{
+  c = 2 * ((2 * a) * (2 * (-b)));
+}
+
+int main ()
+{
+  foo();
+  if (c != 18446744073709551584UL)
+    __builtin_abort();
+  return 0;
+}