1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* { dg-do compile } */ /* { dg-options "-O2 -Wuninitialized" } */ int globalVar = 1; int __attribute__ ((__returns_twice__)) test_setjmpex(void *context); void testfn() { int localVar = globalVar; while (!localVar) { test_setjmpex(__builtin_frame_address (0)); // { dg-bogus "uninitialized" } if (globalVar) break; } }