* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr38661-1.c
blob065f12010a73e610bc417dfc5a9b56a416d0f837
1 /* We used to ICE because we would wrap INT_MAX
2 into INT_MIN while doing the switch converison. */
4 const char *func(int val) {
5 switch (val) {
6 case - __INT_MAX__ -1 : return "foo";
7 default: return "";