1 /* { dg-do compile { target { ! { { logical_op_short_circuit && { ! avr-*-* } } || { m68k*-*-* mmix*-*-* bfin*-*-* v850*-*-* moxie*-*-* cris*-*-* m32c*-*-* fr30*-*-* mcore*-*-* powerpc*-*-* xtensa*-*-* arc*-*-* mips*-*-* } } } } } */
2 
3 /* { dg-options "-O2 -g -fdump-tree-optimized" } */
4 /* { dg-additional-options "-mbranch-cost=2" { target branch_cost } } */
5 
t(int a,int b,int c)6 int t (int a, int b, int c)
7 {
8   if (a > 0 && b > 0 && c > 0)
9       return 0;
10   return 1;
11 }
12 /* { dg-final { scan-tree-dump-times "\&" 2 "optimized" } } */
13