* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr46034.c
blob02eda0572e490ddffdbbe296afbf882ce10277ce
1 /* PR rtl-optimization/46034 */
3 void bar (int);
5 void
6 foo (int x, int y)
8 int i;
9 for (i = 0; i < x; i++)
11 y = __builtin_abs (y);
12 bar (y / 2);