re PR target/53358 (ICE due to TARGET_READ_MODIFY_WRITE peephole2)
authorJakub Jelinek <jakub@redhat.com>
Tue, 15 May 2012 15:19:10 +0000 (17:19 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 15 May 2012 15:19:10 +0000 (17:19 +0200)
PR target/53358
* config/i386/i386.md (*addqi_2 peephole with QImode addition): Check
that operands[2] is either immediate, or q_regs_operand.

* gcc.dg/pr53358.c: New test.

From-SVN: r187544

gcc/ChangeLog
gcc/config/i386/i386.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr53358.c [new file with mode: 0644]

index 0854c1859f85dbc4444f0929ef19c670dc6e4543..d564c10ac2d0aaadf3869acab43187cb11ace719 100644 (file)
@@ -1,3 +1,9 @@
+2012-05-15  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/53358
+       * config/i386/i386.md (*addqi_2 peephole with QImode addition): Check
+       that operands[2] is either immediate, or q_regs_operand.
+
 2012-05-15  Richard Guenther  <rguenther@suse.de>
 
        * cgraphunit.c (thunk_adjust): Use make_rename_temp.
index 01e2421de7d10620f4687c37448d7043c4c73884..67281d84bcac4af3bf5d5cb26a18d30fb70e874c 100644 (file)
   "(TARGET_READ_MODIFY_WRITE || optimize_insn_for_size_p ())
    && peep2_reg_dead_p (4, operands[0])
    && !reg_overlap_mentioned_p (operands[0], operands[1])
+   && (<MODE>mode != QImode
+       || immediate_operand (operands[2], QImode)
+       || q_regs_operand (operands[2], QImode))
    && ix86_match_ccmode (peep2_next_insn (3),
                         (GET_CODE (operands[3]) == PLUS
                          || GET_CODE (operands[3]) == MINUS)
index 3294c2a0773f3a6cf83f85e68e109b106db46493..f9bd64d4717894ab3e8aabaecf968a505e313a37 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-15  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/53358
+       * gcc.dg/pr53358.c: New test.
+
 2012-05-15  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/11856
diff --git a/gcc/testsuite/gcc.dg/pr53358.c b/gcc/testsuite/gcc.dg/pr53358.c
new file mode 100644 (file)
index 0000000..494090a
--- /dev/null
@@ -0,0 +1,22 @@
+/* PR target/53358 */
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-additional-options "-fpic" { target fpic } } */
+/* { dg-additional-options "-mtune=pentium4" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
+
+struct S { unsigned char s, t[17]; };
+int bar (void);
+
+void
+foo (struct S *x)
+{
+  unsigned char i, z;
+  if (bar ())
+    {
+      z = bar ();
+      bar ();
+      x->s += z;
+      for (i = 0; i < x->s; i++)
+       x->t[i] = bar ();
+    }
+}