]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR tree-optimization/14470 ([tree-ssa] trouble with post-increment)
authorEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 13 Mar 2004 18:32:24 +0000 (18:32 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 13 Mar 2004 18:32:24 +0000 (18:32 +0000)
PR middle-end/14470
* gcc.c-torture/execute/20040313-1.c: New test.

From-SVN: r79456

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/20040309-1.c [deleted file]

index 0874e2f1c5ce16a4f5be5e71873a7630da8086a3..01604db0afd2b1ec7e97f413af99d4247e0c59a6 100644 (file)
 2004-03-12  Gabriel Dos Reis  <gdr@integrable-solutions.net>
 
        Backport:
-       2004-03-09  Eric Botcazou  <ebotcazou@libertysurf.fr>
+       2004-03-13  Eric Botcazou  <ebotcazou@libertysurf.fr>
         PR middle-end/14470
        * expr.c (store_expr): Call emit_queue before generating the move
        from the temporary to the original target.  Protect the temporary
-       from emit_queue.        
+       from emit_queue.
 
 2004-03-10  James E Wilson  <wilson@specifixinc.com>
 
index 1b5a2966023e61f6d5d4e03847978d5a6f862719..a4099ad613df2fcd0891396f59a57dfe17f7f290 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-13  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       PR middle-end/14470
+       * gcc.c-torture/execute/20040313-1.c: New test.
+
 2004-03-13  Jakub Jelinek  <jakub@redhat.com>
 
        PR target/14533
diff --git a/gcc/testsuite/gcc.c-torture/execute/20040309-1.c b/gcc/testsuite/gcc.c-torture/execute/20040309-1.c
deleted file mode 100644 (file)
index d52532d..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* PR middle-end/14470 */
-/* Origin: Lodewijk Voge <lvoge@cs.vu.nl> */
-
-extern void abort(void);
-
-int main()
-{
-  int t[1025] = { 1024 }, d;
-
-  d = 0;
-  d = t[d]++;
-  if (t[0] != 1025)
-    abort();
-  return 0;
-}
-