PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / branch-cost1.c
blob384931201f9b9a610bec4c957eb0bcd520f896ce
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-gimple -mbranch-cost=0" } */
4 extern int doo (void);
6 int
7 foo (int a, int 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" } } */