new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21539 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-04-25 20:17:00 +00:00
parent a1198b5254
commit 27b8598c97

View File

@ -58,3 +58,11 @@ int %test9() {
%B = cast double* %A to int
ret int %B
}
bool %g({int, int} * %x, {int, int} * %y) {
%tmp.1 = getelementptr {int,int}* %x, int 0, uint 1
%tmp.3 = getelementptr {int,int}* %y, int 0, uint 1
%tmp.4 = seteq int* %tmp.1, %tmp.3 ;; seteq x, y
ret bool %tmp.4
}