* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr56539.c
blob0fba96f4c8dd3f7c74d68741e4a2de84e35d7f18
1 /* PR tree-optimization/56539 */
3 short
4 foo (const char *x, unsigned y)
6 return y > 1 ? (x[y - 1] - '0') + 10 * foo (x, y - 1) : (*x - '0');