libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / pr103270.c
blob819310e360e56ac67dba6e07cb15ddc4a8c9db31
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-profile_estimate" } */
4 void test(int a, int* i)
6 for (; a < 5; ++a)
8 int b = 0;
9 int c = 0;
10 for (; b != -11; b--)
11 for (int d = 0; d ==0; d++)
13 *i += c & a;
14 c = b;
19 /* { dg-final { scan-tree-dump-not "extra loop exit heuristics of edge\[^:\]*:" "profile_estimate"} } */