]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/O16384.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / O16384.c
1 /* Test insane -O argument. */
2 /* { dg-do compile } */
3 /* { dg-options "-O16384" } */
4
5 __attribute__((__optimize__(16396), __noinline__)) void
6 foo (void)
7 {
8 }
9
10 int
11 main (void)
12 {
13 foo ();
14 return 0;
15 }