Treat copysignl like the other copysign functions.
[oota-llvm.git] / test / FrontendC / 2008-05-12-TempUsedBeforeDef.c
1 // RUN: %llvmgcc -w -S -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 }