IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / sms-8.c
blobafac55dadd17d0989c4cecee18bfacd6aae7cadc
1 /* This test is a reduced test case for a bug that caused
2 bootstrapping with -fmodulo-sched. Related to a broken anti-dep
3 that was not fixed by reg-moves. */
5 /* { dg-do run } */
6 /* { dg-options "-O2 -fmodulo-sched -fmodulo-sched-allow-regmoves -fdump-rtl-sms" } */
8 extern void abort (void);
10 __attribute__ ((noinline))
11 unsigned long long
12 foo (long long ixi, unsigned ctr)
14 unsigned long long irslt = 1;
15 long long ix = ixi;
17 for (; ctr; ctr--)
19 irslt *= ix;
20 ix *= ix;
23 if (irslt != 14348907)
24 abort ();
25 return irslt;
29 int
30 main ()
32 unsigned long long res;
34 res = foo (3, 4);
35 return 0;
38 /* { dg-final { scan-rtl-dump-times "SMS succeeded" 1 "sms" { target powerpc*-*-* } } } */
39 /* { dg-final { cleanup-rtl-dump "sms" } } */