summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-04-28 23:55:14 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-04-28 23:55:14 +0000
commit6e6014cfb3e4dea3b0bd59bcc49ba8cd8dfcfa96 (patch)
treec28fca85847e586b20e24054114560e7ef5d16e9 /test/CodeGen/ARM
parent73359c1327df71859a2ead3cca5879f75066dca6 (diff)
downloadllvm-6e6014cfb3e4dea3b0bd59bcc49ba8cd8dfcfa96.tar.gz
llvm-6e6014cfb3e4dea3b0bd59bcc49ba8cd8dfcfa96.tar.bz2
llvm-6e6014cfb3e4dea3b0bd59bcc49ba8cd8dfcfa96.tar.xz
Revert r130454; apparently this doesn't actually work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130462 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM')
-rw-r--r--test/CodeGen/ARM/fast-isel-redefinition.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/ARM/fast-isel-redefinition.ll b/test/CodeGen/ARM/fast-isel-redefinition.ll
deleted file mode 100644
index 08dcc64c9c..0000000000
--- a/test/CodeGen/ARM/fast-isel-redefinition.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: llc -O0 -regalloc=linearscan < %s
-; This isn't exactly a useful set of command-line options, but check that it
-; doesn't crash. (It was crashing because a register was getting redefined.)
-
-target triple = "thumbv7-apple-macosx10.6.7"
-
-define i32 @f(i32* %x) nounwind ssp {
- %y = getelementptr inbounds i32* %x, i32 5000
- %tmp103 = load i32* %y, align 4
- ret i32 %tmp103
-}