From: Chris Lattner Date: Thu, 7 Apr 2005 16:41:45 +0000 (+0000) Subject: new test X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7c5270220197f8dcda2f872c7b0191b743bd5cf3;p=oota-llvm.git new test git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21137 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/sub.ll b/test/Transforms/InstCombine/sub.ll index 7a8f2acad9f..0b029aab959 100644 --- a/test/Transforms/InstCombine/sub.ll +++ b/test/Transforms/InstCombine/sub.ll @@ -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 +}