blob: 8f378bb3b9b74575b64dfc8509fdbbf49d1da0a1 [file] [log] [blame]
Tanya Lattnere7e3f2e2004-11-06 22:07:09 +00001; RUN: llvm-as < %s -o /dev/null -f
2
Chris Lattner6551ea92004-03-12 05:50:02 +00003
4
5int %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}