new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30229 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-09-09 20:26:04 +00:00
parent f1b5adbfcc
commit bbf4636200

View File

@ -148,3 +148,9 @@ bool %test17(int* %X, bool %C) {
%RV = seteq int* %R, null
ret bool %RV
}
int %test18(int %X, int %Y, bool %C) {
%R = select bool %C, int %X, int 0
%V = div int %Y, %R ; div Y,X
ret int %V
}