2014-08-04 Ed Schonberg <schonberg@adacore.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr59920-1.c
blob3e60d37ae2050a670b70548d40916a629ce79371
1 /* PR tree-optimization/59920 */
2 /* { dg-do compile } */
3 /* { dg-options "-O0" } */
5 #include <setjmp.h>
7 int bar (void);
8 void baz (int);
10 #define A { int x = bar (); if (setjmp (buf) == 0) baz (x); }
11 #define B A A A A A A A A A A
12 #define C B B B B B B B B B B
14 extern jmp_buf buf;
16 void
17 foo (void)
19 C C