1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

New testcase

llvm-svn: 12306
This commit is contained in:
Chris Lattner 2004-03-12 05:50:02 +00:00
parent da119ce857
commit 3efa4e8010

View File

@ -0,0 +1,7 @@
int %test(bool %C, int %V1, int %V2) {
%X = select bool true, bool false, bool true
%V = select bool %X, int %V1, int %V2
ret int %V
}