Support Intel AMX-MOVRS
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / wholeprogram-1.c
blob0e54a3b2fd925294680142d6dfa9b408382649b2
1 /* { dg-options "-O2 -fdump-tree-optimized -fwhole-program" } */
2 int b[100];
3 void abort (void);
5 void
6 large_function ()
8 int i;
9 for (i = 0; i < 99; i++)
10 if (b[i] / (b[i+1] + 1))
11 abort ();
14 int
15 main ()
17 large_function ();
20 /* Function should be inlined as called once. */
21 /* { dg-final { scan-tree-dump-not "large_function" "optimized"} } */