aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2011-06-06 18:16:18 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2011-06-06 18:16:18 +0000
commit4de4b0f267380846df53edeea0afdcb383fd4d8f (patch)
treeafceeeb67948e24f1ee59b3dc64fc6ff7a851eb5
parentf9b41b6c80b0d54eacd9a0101e1f230e0faa5554 (diff)
downloadgcc-4de4b0f267380846df53edeea0afdcb383fd4d8f.zip
gcc-4de4b0f267380846df53edeea0afdcb383fd4d8f.tar.gz
gcc-4de4b0f267380846df53edeea0afdcb383fd4d8f.tar.bz2
re PR rtl-optimization/49145 (ICE in simplify_const_unary_operation, at simplify-rtx.c:1322)
gcc/ PR rtl-optimization/49145 * combine.c (make_compound_operation): Handle ZERO_EXTEND specially. gcc/testsuite/ PR rtl-optimization/49145 From Ryan Mansfield * gcc.c-torture/compile/pr49145.c: New test. From-SVN: r174718
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/combine.c15
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/pr49145.c30
4 files changed, 55 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a4164a3..5333f52 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2011-06-06 Richard Sandiford <rdsandiford@googlemail.com>
+
+ PR rtl-optimization/49145
+ * combine.c (make_compound_operation): Handle ZERO_EXTEND specially.
+
2011-06-06 Jakub Jelinek <jakub@redhat.com>
PR debug/49262
diff --git a/gcc/combine.c b/gcc/combine.c
index 8af86f2..5b68bab 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -7881,7 +7881,20 @@ make_compound_operation (rtx x, enum rtx_code in_code)
code = GET_CODE (x);
}
- /* Now recursively process each operand of this operation. */
+ /* Now recursively process each operand of this operation. We need to
+ handle ZERO_EXTEND specially so that we don't lose track of the
+ inner mode. */
+ if (GET_CODE (x) == ZERO_EXTEND)
+ {
+ new_rtx = make_compound_operation (XEXP (x, 0), next_code);
+ tem = simplify_const_unary_operation (ZERO_EXTEND, GET_MODE (x),
+ new_rtx, GET_MODE (XEXP (x, 0)));
+ if (tem)
+ return tem;
+ SUBST (XEXP (x, 0), new_rtx);
+ return x;
+ }
+
fmt = GET_RTX_FORMAT (code);
for (i = 0; i < GET_RTX_LENGTH (code); i++)
if (fmt[i] == 'e')
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index fdfc9a9..7619350 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2011-06-06 Richard Sandiford <rdsandiford@googlemail.com>
+
+ PR rtl-optimization/49145
+ From Ryan Mansfield
+ * gcc.c-torture/compile/pr49145.c: New test.
+
2011-06-06 Jakub Jelinek <jakub@redhat.com>
PR testsuite/49288
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr49145.c b/gcc/testsuite/gcc.c-torture/compile/pr49145.c
new file mode 100644
index 0000000..079fc88
--- /dev/null
+++ b/gcc/testsuite/gcc.c-torture/compile/pr49145.c
@@ -0,0 +1,30 @@
+static int
+func1 (int a, int b)
+{
+ return b ? a : a / b;
+}
+
+static unsigned char
+func2 (unsigned char a, int b)
+{
+ return b ? a : b;
+}
+
+int i;
+
+void
+func3 (const int arg)
+{
+ for (i = 0; i != 10; i = foo ())
+ {
+ if (!arg)
+ {
+ int j;
+ for (j = 0; j < 5; j += 1)
+ {
+ int *ptr;
+ *ptr = func2 (func1 (arg, *ptr), foo (arg));
+ }
+ }
+ }
+}