AVR: target/114981 - Tweak __builtin_powif / __powisf2
[official-gcc.git] / gcc / testsuite / gcc.dg / predict-14.c
bloba1b283699ec7d4d92dc96efba5162badb604a1a9
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-profile_estimate" } */
4 void test(void) __attribute__ ((noreturn));
6 int main(int argc, char **argv)
8 switch (argc)
10 case 1:
11 test();
12 case 4:
13 test();
14 default:
15 test();
18 return 10;
21 /* { dg-final { scan-tree-dump-times "predicted to even probabilities" 4 "profile_estimate"} } */