Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr59993.c
blob57ecdde6938c2c2ab90cf0453a2f42e55e39f228
1 /* { dg-do compile } */
2 /* { dg-require-effective-target indirect_jumps } */
4 #include <setjmp.h>
6 extern int optind;
7 jmp_buf jump_buf;
8 void foo (jmp_buf, int);
9 void bar (char *);
10 int
11 main (int argc, char **argv)
13 foo (jump_buf, setjmp(jump_buf));
14 argv += optind;
15 bar(argv[1]);