PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / branch-cost3.c
blob0525acb4d26b51fe6e88a94e48314678410706b3
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-gimple -mbranch-cost=2" } */
4 extern int doo (void);
6 int
7 foo (_Bool a, _Bool b)
9 if (a && b)
10 return doo ();
11 return 0;
14 /* { dg-final { scan-tree-dump-times "if " 1 "gimple" } } */
15 /* { dg-final { scan-tree-dump-times " & " 1 "gimple" } } */