From: Chris Lattner Date: Wed, 12 Nov 2003 16:38:32 +0000 (+0000) Subject: This is not the instruction combiner's fault! No really! X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=c7f05ca2a302e092d5c147f82c3cccf0f8c29921 This is not the instruction combiner's fault! No really! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9918 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/2003-11-12-CastSubBug.ll b/test/Transforms/InstCombine/2003-11-12-CastSubBug.ll deleted file mode 100644 index cd5f233336a..00000000000 --- a/test/Transforms/InstCombine/2003-11-12-CastSubBug.ll +++ /dev/null @@ -1,9 +0,0 @@ -; llvm-as < %s | opt -instcombine | llvm-dis | grep 'to sbyte' - -%.Base64_1 = external constant [4 x sbyte] - -ubyte %test(sbyte %X) { - %tmp.12 = sub sbyte %X, cast ([4 x sbyte]* %.Base64_1 to sbyte) ; [#uses=1] - %tmp.13 = cast sbyte %tmp.12 to ubyte ; [#uses=1] - ret ubyte %tmp.13 -}