1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-optimized" } */
3 /* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } { "" } } */
4 /* { dg-require-effective-target indirect_jumps } */
6 struct __jmp_buf_tag
{};
7 typedef struct __jmp_buf_tag
jmp_buf[1];
8 extern int _setjmp (struct __jmp_buf_tag __env
[1]);
10 jmp_buf g_return_jmp_buf
;
12 void SetNaClSwitchExpectations (void)
14 __builtin_longjmp (g_return_jmp_buf
, 1);
16 void TestSyscall(void)
18 SetNaClSwitchExpectations();
19 _setjmp (g_return_jmp_buf
);
22 /* { dg-final { scan-tree-dump "setjmp" "optimized" } } */