llvm-project/clang/test/PCH/no-escaping-block-tail-calls.h
Akira Hatanaka db49a1f78a Serialize DoesNotEscape.
I forgot to commit this in r326530.

llvm-svn: 338656
2018-08-01 23:51:53 +00:00

17 lines
211 B
C

typedef int (^BlockTy)(void);
struct S0 {
int a;
};
struct S {
int i;
void func(BlockTy __attribute__((noescape)));
int foo(S0 &);
void m() {
__block S0 x;
func(^{ return foo(x); });
}
};