]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR rtl-optimization/58726 (wrong code at -Os on x86_64-linux-gnu (affecting trunk...
authorJakub Jelinek <jakub@redhat.com>
Wed, 4 Dec 2013 11:25:06 +0000 (12:25 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 4 Dec 2013 11:25:06 +0000 (12:25 +0100)
PR rtl-optimization/58726
* combine.c (force_to_mode): Fix comment typo.  Don't destructively
modify x for ROTATE, ROTATERT and IF_THEN_ELSE.

* gcc.c-torture/execute/pr58726.c: New test.

From-SVN: r205664

gcc/ChangeLog
gcc/combine.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/pr58726.c [new file with mode: 0644]

index 56b4f477f785df38c210c3941f427f348ede47b8..081787c094fde20737aabca4c7b4345aeb183763 100644 (file)
@@ -1,3 +1,9 @@
+2013-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/58726
+       * combine.c (force_to_mode): Fix comment typo.  Don't destructively
+       modify x for ROTATE, ROTATERT and IF_THEN_ELSE.
+
 2013-12-04  Jakub Jelinek  <jakub@redhat.com>
            Uros Bizjak  <ubizjak@gmail.com>
 
index 25cf273f8080e52a7a477026801462c5112c00cd..c7eb5e5b02415c2fd47b56b0afa8f6a101fe98ed 100644 (file)
@@ -8029,7 +8029,7 @@ force_to_mode (rtx x, enum machine_mode mode, unsigned HOST_WIDE_INT mask,
   if (code == CALL || code == ASM_OPERANDS || code == CLOBBER)
     return x;
 
-  /* We want to perform the operation is its present mode unless we know
+  /* We want to perform the operation in its present mode unless we know
      that the operation is valid in MODE, in which case we do the operation
      in MODE.  */
   op_mode = ((GET_MODE_CLASS (mode) == GET_MODE_CLASS (GET_MODE (x))
@@ -8460,9 +8460,10 @@ force_to_mode (rtx x, enum machine_mode mode, unsigned HOST_WIDE_INT mask,
                                            gen_int_mode (mask, GET_MODE (x)),
                                            XEXP (x, 1));
          if (temp && CONST_INT_P (temp))
-           SUBST (XEXP (x, 0),
-                  force_to_mode (XEXP (x, 0), GET_MODE (x),
-                                 INTVAL (temp), next_select));
+           x = simplify_gen_binary (code, GET_MODE (x),
+                                    force_to_mode (XEXP (x, 0), GET_MODE (x),
+                                                   INTVAL (temp), next_select),
+                                    XEXP (x, 1));
        }
       break;
 
@@ -8530,14 +8531,16 @@ force_to_mode (rtx x, enum machine_mode mode, unsigned HOST_WIDE_INT mask,
       /* We have no way of knowing if the IF_THEN_ELSE can itself be
         written in a narrower mode.  We play it safe and do not do so.  */
 
-      SUBST (XEXP (x, 1),
-            gen_lowpart_or_truncate (GET_MODE (x),
-                                     force_to_mode (XEXP (x, 1), mode,
-                                                    mask, next_select)));
-      SUBST (XEXP (x, 2),
-            gen_lowpart_or_truncate (GET_MODE (x),
-                                     force_to_mode (XEXP (x, 2), mode,
-                                                    mask, next_select)));
+      op0 = gen_lowpart_or_truncate (GET_MODE (x),
+                                    force_to_mode (XEXP (x, 1), mode,
+                                                   mask, next_select));
+      op1 = gen_lowpart_or_truncate (GET_MODE (x),
+                                    force_to_mode (XEXP (x, 2), mode,
+                                                   mask, next_select));
+      if (op0 != XEXP (x, 1) || op1 != XEXP (x, 2))
+       x = simplify_gen_ternary (IF_THEN_ELSE, GET_MODE (x),
+                                 GET_MODE (XEXP (x, 0)), XEXP (x, 0),
+                                 op0, op1);
       break;
 
     default:
index 32b4ff41e3e27ab5f42fe991ebe61e8c3e106543..912b117ac0ee852c77fe16449e77a1735a32df6c 100644 (file)
@@ -1,5 +1,8 @@
 2013-12-04  Jakub Jelinek  <jakub@redhat.com>
 
+       PR rtl-optimization/58726
+       * gcc.c-torture/execute/pr58726.c: New test.
+
        PR target/59163
        * g++.dg/torture/pr59163.C: New test.
 
diff --git a/gcc/testsuite/gcc.c-torture/execute/pr58726.c b/gcc/testsuite/gcc.c-torture/execute/pr58726.c
new file mode 100644 (file)
index 0000000..9fa8b69
--- /dev/null
@@ -0,0 +1,26 @@
+/* PR rtl-optimization/58726 */
+
+int a, c;
+union { int f1; int f2 : 1; } b;
+
+short
+foo (short p)
+{
+  return p < 0 ? p : a;
+}
+
+int
+main ()
+{
+  if (sizeof (short) * __CHAR_BIT__ != 16
+      || sizeof (int) * __CHAR_BIT__ != 32)
+    return 0;
+  b.f1 = 56374;
+  unsigned short d;
+  int e = b.f2;
+  d = e == 0 ? b.f1 : 0;
+  c = foo (d);
+  if (c != (short) 56374)
+    __builtin_abort ();
+  return 0;
+}