add a new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21469 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-04-23 15:31:03 +00:00
parent 3952bc6f39
commit 17ce8d22c3

View File

@ -142,3 +142,9 @@ int %test16(bool %C, int* %P) {
%V = load int* %P2
ret int %V
}
bool %test17(int* %X, bool %C) {
%R = select bool %C, int* %X, int* null
%RV = seteq int* %R, null
ret bool %RV
}