Eric Christopher | 3883e66 | 2011-07-26 22:17:02 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -w -emit-llvm -o /dev/null %s |
2 | // PR2264. | ||||
3 | unsigned foo = 8L; | ||||
4 | unsigned bar = 0L; | ||||
5 | volatile unsigned char baz = 6L; | ||||
6 | int test() { | ||||
7 | char qux = 1L; | ||||
8 | for (; baz >= -29; baz--) | ||||
9 | bork(bar && foo, qux); | ||||
10 | } |