Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / gcc.dg / tree-ssa / reassoc-34.c
blobdbb1a6c300439104a2e839477ea433f68752d6f9
1 /* { dg-do run { target { ! "m68k*-*-* mmix*-*-* mep*-*-* bfin*-*-* v850*-*-* picochip*-*-* moxie*-*-* cris*-*-* m32c*-*-* fr30*-*-* mcore*-*-* powerpc*-*-* xtensa*-*-* hppa*-*-*"} } } */
3 /* { dg-options "-O2 -fno-inline -fdump-tree-reassoc1-details" } */
4 /* { dg-additional-options "-mbranch-cost=2" { target mips*-*-* avr-*-* s390*-*-* i?86-*-* x86_64-*-* } } */
6 int test (int a, int b, int c)
8 if (a == 10 || a == 12)
9 return b;
10 else
11 return c;
13 int main ()
15 if (test (10, 20, 30) != 20)
16 __builtin_abort ();
17 if (test (12, 20, 30) != 20)
18 __builtin_abort ();
19 if (test (26, 20, 30) != 30)
20 __builtin_abort ();
21 return 0;
23 /* { dg-final { scan-tree-dump-times "Optimizing range tests" 1 "reassoc1"} }*/
24 /* { dg-final { cleanup-tree-dump "reassoc1" } } */