diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-16 05:44:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-16 05:44:56 +0000 |
commit | c3f661b17fb9902fc42bc320adc7f1cb67c42cb0 (patch) | |
tree | 91289ee28393038ae10fbfc9287964bc33739a7a | |
parent | 46b08cdc7cd54d04281f58ee5b6b32082d778b20 (diff) | |
download | bcm5719-llvm-c3f661b17fb9902fc42bc320adc7f1cb67c42cb0.tar.gz bcm5719-llvm-c3f661b17fb9902fc42bc320adc7f1cb67c42cb0.zip |
New testcase
llvm-svn: 2261
-rw-r--r-- | llvm/test/Regression/Transforms/LevelRaise/2002-04-16-MissedRaise.ll | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/llvm/test/Regression/Transforms/LevelRaise/2002-04-16-MissedRaise.ll b/llvm/test/Regression/Transforms/LevelRaise/2002-04-16-MissedRaise.ll new file mode 100644 index 00000000000..1ca027e979e --- /dev/null +++ b/llvm/test/Regression/Transforms/LevelRaise/2002-04-16-MissedRaise.ll @@ -0,0 +1,28 @@ +; this testcase is distilled from this C source: +; int *foo(unsigned N, unsigned M) { +; unsigned i = (N+1)*sizeof(int); +; unsigned j = (M+1)*sizeof(int); +; return (int*)malloc(i+j); +; } + +; RUN: if as < %s | opt -raise | dis | grep ' cast ' | grep '*' +; RUN: then exit 1 +; RUN: else exit 0 +; RUN: fi + +implementation + +declare sbyte* "malloc"(uint) + +int* "test"(uint %N, uint %M) +begin +bb0: ;[#uses=0] + %reg111 = shl uint %N, ubyte 2 ; <uint> [#uses=1] + %reg109 = add uint %reg111, 4 ; <uint> [#uses=1] + %reg114 = shl uint %M, ubyte 2 ; <uint> [#uses=1] + %reg112 = add uint %reg114, 4 ; <uint> [#uses=1] + %reg116 = add uint %reg109, %reg112 ; <uint> [#uses=1] + %reg117 = malloc sbyte, uint %reg116 ; <sbyte*> [#uses=1] + %cast221 = cast sbyte* %reg117 to int* ; <int*> [#uses=1] + ret int* %cast221 +end |