PR rtl-optimization/61772
authormatz <matz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 15 Jul 2014 14:11:06 +0000 (14:11 +0000)
committermatz <matz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 15 Jul 2014 14:11:06 +0000 (14:11 +0000)
        * ifcvt.c (dead_or_predicable): Check jump to be free of side
        effects.

testsuite/
        * gcc.dg/torture/pr61772.c: New test.

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

gcc/ChangeLog
gcc/ifcvt.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/pr61772.c [new file with mode: 0644]

index e9f938f..f777188 100644 (file)
@@ -1,3 +1,9 @@
+2014-07-15  Michael Matz  <matz@suse.de>
+
+       PR rtl-optimization/61772
+       * ifcvt.c (dead_or_predicable): Check jump to be free of side
+       effects.
+
 2014-07-15  Richard Biener  <rguenther@suse.de>
 
        * opts.c (default_options_table): Disable bit-ccp at -Og.
index 8104ae4..faf9b30 100644 (file)
@@ -4138,6 +4138,8 @@ dead_or_predicable (basic_block test_bb, basic_block merge_bb,
 
   if (JUMP_P (end))
     {
+      if (!onlyjump_p (end))
+       return FALSE;
       if (head == end)
        {
          head = end = NULL_RTX;
index 8332a20..bed5539 100644 (file)
@@ -1,3 +1,8 @@
+2014-07-15  Michael Matz  <matz@suse.de>
+
+       PR rtl-optimization/61772
+       * gcc.dg/torture/pr61772.c: New test.
+
 2014-07-15  Marek Polacek  <polacek@redhat.com>
 
        * gcc.dg/ubsan/bounds-1.c: New test.
diff --git a/gcc/testsuite/gcc.dg/torture/pr61772.c b/gcc/testsuite/gcc.dg/torture/pr61772.c
new file mode 100644 (file)
index 0000000..da4c93e
--- /dev/null
@@ -0,0 +1,24 @@
+/* { dg-do compile } */
+/* { dg-final { scan-assembler-times "XXX" 2 } } */
+
+static inline __attribute__((always_inline)) int dec_and_test (int *i)
+{
+    asm volatile goto ("XXX %0, %l[cc_label]"
+                      : : "m" (*i) : "memory" : cc_label);
+    return 0;
+cc_label:
+    return 1;
+}
+extern int getit (int *);
+int f (int *i, int cond)
+{
+  if (cond) {
+      getit (0);
+      if (dec_and_test (i))
+       getit (i);
+      return 42;
+  }
+  if (dec_and_test (i))
+    (void)1;
+  return getit (i);
+}