git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21137 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-04-07 16:41:45 +00:00
parent 08954a26e4
commit 7c52702201

View File

@ -119,3 +119,8 @@ long %test18(long %Y) {
ret long %tmp.8
}
int %test19(int %X, int %Y) {
%Z = sub int %X, %Y
%Q = add int %Z, %Y
ret int %Q
}