From 3d173b3638ddf269391b32366b54b413f96e3b78 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 7 Apr 2005 16:24:59 +0000 Subject: [PATCH] new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21135 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/add.ll | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/Transforms/InstCombine/add.ll b/test/Transforms/InstCombine/add.ll index c9715635ea4..f06109342ce 100644 --- a/test/Transforms/InstCombine/add.ll +++ b/test/Transforms/InstCombine/add.ll @@ -191,3 +191,8 @@ int %test27(bool %C, int %X, int %Y) { ret int %D } +int %test28(int %X) { + %Y = add int %X, 1234 + %Z = sub int 42, %Y + ret int %Z +} -- 2.34.1