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