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>
+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
+++ /dev/null
-/* 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;
-}
-