comparison gcc/testsuite/gcc.c-torture/compile/930506-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* { dg-require-effective-target trampolines } */
2
3 int f1()
4 {
5 { int ___() { foo(1); } bar(___); }
6 return( { int ___() { foo(2); } bar(___);} );
7 }
8
9 int f2(int j)
10 {
11 { int ___() { foo(j); } bar(___); }
12 return( { int ___() { foo(j); } bar(___);} );
13 }