comparison gcc/testsuite/gcc.c-torture/compile/pr84136.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
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 }