Home | History | Annotate | Download | only in CodeGen
      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 }
     11