libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / pr101741.c
blob6587dca77d588e8101552a8a43ac3e9ede0e2725
1 /* PR tree-optimization/101741 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 " } */
5 int
6 foo (void);
8 unsigned int
9 toupper (int c)
11 c = foo ();
12 while (c)
13 c = toupper (c);
15 return c;