brintos

brintos / llvm-project-archived public Read only

0
0
Text · 231 B · 2c32ba1 Raw
11 lines · c
1// RUN: %clang_cc1 -std=c89 -w -emit-llvm -o /dev/null %s2// PR2264.3unsigned foo = 8L;4unsigned bar = 0L;5volatile unsigned char baz = 6L;6int test(void) {7  char qux = 1L;8  for (; baz >= -29; baz--)9    bork(bar && foo, qux);10}11