From 7c5270220197f8dcda2f872c7b0191b743bd5cf3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 7 Apr 2005 16:41:45 +0000 Subject: [PATCH] new test git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21137 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/sub.ll | 5 +++++ 1 file changed, 5 insertions(+) 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 +}