Use llvm-upgrade these tests as they all use old assembly.
[oota-llvm.git] / test / Assembler / select.ll
1 ; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
2
3
4
5 int %test(bool %C, int %V1, int %V2) {
6   %X = select bool true, bool false, bool true
7   %V = select bool %X, int %V1, int %V2
8   ret int %V
9 }