Correct the vandc testcase
[oota-llvm.git] / test / CFrontend / 2003-08-21-BinOp-Type-Mismatch.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3 struct bar;
4
5 void foo()
6 {
7   unsigned int frame, focus;
8   (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
9 }
10