diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-11-12 22:39:30 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-11-12 22:39:30 +0000 |
commit | 2eda9458ea8842f589f5fa33eb088f5942f4c8a8 (patch) | |
tree | cf75967d7c985133d994c70814363ec53ab9beca /test | |
parent | bf27b6159374fa2ef99888d5dfa05c5cd1d13be1 (diff) | |
download | external_llvm-2eda9458ea8842f589f5fa33eb088f5942f4c8a8.zip external_llvm-2eda9458ea8842f589f5fa33eb088f5942f4c8a8.tar.gz external_llvm-2eda9458ea8842f589f5fa33eb088f5942f4c8a8.tar.bz2 |
XFAIL test that depends on linear scan to remove dead code.
Filed PR11364 to track the problem. Should the register allocator
eliminate dead code?
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/ARM/peephole-bitcast.ll | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/CodeGen/ARM/peephole-bitcast.ll b/test/CodeGen/ARM/peephole-bitcast.ll index e670a5b..e72d51f 100644 --- a/test/CodeGen/ARM/peephole-bitcast.ll +++ b/test/CodeGen/ARM/peephole-bitcast.ll @@ -1,4 +1,6 @@ -; RUN: llc < %s -march=arm -mcpu=cortex-a8 -regalloc=linearscan | FileCheck %s +; RUN: llc < %s -march=arm -mcpu=cortex-a8 | FileCheck %s +; XFAIL: * +; PR11364 ; vmov s0, r0 + vmov r0, s0 should have been optimized away. ; rdar://9104514 |