modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr84136.c (about) 1 /* { dg-require-effective-target indirect_jumps } */ 2 3 void* a; 4 5 void foo() { 6 if ((a = &&l)) 7 return; 8 9 l:; 10 } 11 12 int main() { 13 foo(); 14 goto *a; 15 16 return 0; 17 }