From 8d5e05bb710b509d8b2e2843aa7526f3172e86c6 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 27 Jun 2004 22:51:19 +0000 Subject: [PATCH] new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14442 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 8c99eac3970..8dd4c82fa9f 100644 --- a/test/Transforms/InstCombine/add.ll +++ b/test/Transforms/InstCombine/add.ll @@ -130,3 +130,8 @@ int %test20(int %x) { ret int %tmp.4 } +bool %test21(uint %x) { + %t = add uint %x, 4 + %y = seteq uint %t, 123 + ret bool %y +}