From 056ea904a783c3f51cf26c0b3a3d1f690a8892ef Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 6 May 2005 00:58:09 +0000 Subject: [PATCH] new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21708 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/or.ll | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/Transforms/InstCombine/or.ll b/test/Transforms/InstCombine/or.ll index 669540b5e0f..5ac274e3306 100644 --- a/test/Transforms/InstCombine/or.ll +++ b/test/Transforms/InstCombine/or.ll @@ -128,3 +128,8 @@ bool %test19(int %A) { ret bool %D } +int %test20(int %x) { + %y = and int %x, 123 + %z = or int %y, %x + ret int %z +}