* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / branch-cost4.c
blobe4c11aefd80a3b6f6d6cb4fa8ad7afdb4fb1e406
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-gimple -mbranch-cost=0" } */
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 " 2 "gimple" } } */
15 /* { dg-final { scan-tree-dump-not " & " "gimple" } } */