new testcase

llvm-svn: 21539
This commit is contained in:
Chris Lattner 2005-04-25 20:17:00 +00:00
parent ecac782786
commit e680ee2a48
1 changed files with 8 additions and 0 deletions

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
}