Reverting merge from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / reassoc-32.c
blob303b3f32bd9f355058fab8580a25a5a6ca29dd34
1 /* { dg-do run { target { ! "m68k*-*-* mmix*-*-* mep*-*-* bfin*-*-* v850*-*-* picochip*-*-* moxie*-*-* cris*-*-* m32c*-*-* fr30*-*-* mcore*-*-* powerpc*-*-* xtensa*-*-*"} } } */
3 /* { dg-options "-O2 -fno-inline -fdump-tree-reassoc1-details" } */
4 /* { dg-additional-options "-mbranch-cost=2" { target avr-*-* } } */
7 int test (int a, int b, int c)
9 if ( a == 10 || a == 12 || a == 26)
10 return b;
11 else
12 return c;
15 int main ()
17 if (test (10, 20, 30) != 20)
18 __builtin_abort ();
19 if (test (12, 20, 30) != 20)
20 __builtin_abort ();
21 if (test (26, 20, 30) != 20)
22 __builtin_abort ();
23 if (test (30, 20, 30) != 30)
24 __builtin_abort ();
25 return 0;
28 /* { dg-final { scan-tree-dump-times "Optimizing range tests .* 26" 1 "reassoc1"} }*/
29 /* { dg-final { cleanup-tree-dump "reassoc1" } } */