PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-ifcombine-ccmp-4.c
blob9c64b5ec96fb6395f1b8d5b2c4b513749c0454ce
1 /* { dg-do compile { target { ! { { logical_op_short_circuit && { ! avr-*-* } } || { m68k*-*-* mmix*-*-* bfin*-*-* v850*-*-* moxie*-*-* cris*-*-* m32c*-*-* fr30*-*-* mcore*-*-* powerpc*-*-* xtensa*-*-* arc*-*-* mips*-*-* } } } } } */
3 /* { dg-options "-O2 -g -fdump-tree-optimized" } */
4 /* { dg-additional-options "-mbranch-cost=2" { target mips*-*-* avr-*-* s390*-*-* i?86-*-* x86_64-*-* } } */
6 int t (int a, int b)
8 if (a > 0)
9 goto L1;
10 if (b > 0)
11 goto L2;
12 L1:
13 return 0;
14 L2:
15 return 1;
17 /* { dg-final { scan-tree-dump "\&" "optimized" } } */