Fariborz Jahanian | 9e9650c | 2012-01-16 17:52:22 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 %s -emit-llvm-only |
2 | // CHECK that we don't crash. | ||||
3 | |||||
4 | int main(void){ | ||||
5 | int x = 12; | ||||
6 | // Make sure we don't crash when constant folding the case 4 | ||||
7 | // statement due to the case 5 statement contained in the do loop | ||||
8 | switch (4) { | ||||
9 | case 4: do { case 5: x++;} while (x < 100); | ||||
10 | } | ||||
11 | return x; | ||||
12 | } |