From: Chris Lattner Date: Tue, 16 Jul 2002 21:33:27 +0000 (+0000) Subject: New testcase X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4069c8400bcd8d7fde0057fe856879065ea7ac3e;p=oota-llvm.git New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2931 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/LevelRaise/2002-07-16-RaiseCrash2.ll b/test/Transforms/LevelRaise/2002-07-16-RaiseCrash2.ll new file mode 100644 index 00000000000..c9277fb64fd --- /dev/null +++ b/test/Transforms/LevelRaise/2002-07-16-RaiseCrash2.ll @@ -0,0 +1,10 @@ +; This crashes raise, with an cast<> failure + +; RUN: as < %s | opt -raise + +implementation +sbyte* %test(int* %ptr) { + %A = cast int* %ptr to sbyte * + %B = add sbyte* %A, %A + ret sbyte * %B +}