PR rtl-optimization/87918
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr85620-4.c
blob13056c46e49e83dfe97fc4eb901a1c49b7c6ddd6
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wno-attributes" } */
4 struct ucontext;
6 extern int bar (struct ucontext *) __attribute__((__returns_twice__));
8 static int __attribute__ ((__always_inline__))
9 foo (struct ucontext *oucp) /* { dg-error "setjmp" } */
11 return bar (oucp);
14 int
15 test (struct ucontext *oucp)
17 return foo (oucp);