From 5250bae5eed2aa1989f6a710d56fe6eac5bd9e8e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 13 May 2006 02:00:07 +0000 Subject: [PATCH] New testcase for instcombine git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28272 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/cast.ll | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/Transforms/InstCombine/cast.ll b/test/Transforms/InstCombine/cast.ll index ed229e96125..69f31b4e6ca 100644 --- a/test/Transforms/InstCombine/cast.ll +++ b/test/Transforms/InstCombine/cast.ll @@ -185,3 +185,12 @@ uint %test29(uint %c1, uint %c2) { ret uint %tmp10 } +uint %test30(uint %c1) { + %c2 = cast uint %c1 to ubyte + %c3 = xor ubyte %c2, 1 + %c4 = cast ubyte %c3 to uint + ret uint %c4 +} + + +