summaryrefslogtreecommitdiff
path: root/release_23/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll')
-rw-r--r--release_23/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/release_23/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll b/release_23/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll
deleted file mode 100644
index ce5e1ed3ad8e..000000000000
--- a/release_23/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llvm-as < %s -f -o %t.bc
-; RUN: lli %t.bc > /dev/null
-
-; This testcase failed to work because two variable sized allocas confused the
-; local register allocator.
-
-define i32 @main(i32 %X) {
- %A = alloca i32, i32 %X ; <i32*> [#uses=0]
- %B = alloca float, i32 %X ; <float*> [#uses=0]
- ret i32 0
-}
-