diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2010-06-16 21:34:01 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2010-06-16 21:34:01 +0000 |
| commit | 01ac8f9fc098d156bad55bda82824b52b7ce0c6e (patch) | |
| tree | e6656e0900db1978cf9f08c900824214adce7253 /llvm/lib/Target/ARM/ARMISelLowering.cpp | |
| parent | 74892d4f1f6af09b681fbbb0dde4e7f1cec19e96 (diff) | |
| download | bcm5719-llvm-01ac8f9fc098d156bad55bda82824b52b7ce0c6e.tar.gz bcm5719-llvm-01ac8f9fc098d156bad55bda82824b52b7ce0c6e.zip | |
Remove the hidden "neon-reg-sequence" option. The reg sequences are working
now, so there's no need to disable them.
llvm-svn: 106155
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelLowering.cpp')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index 78ce2f0f8f5..79248d7e4aa 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -109,10 +109,7 @@ void ARMTargetLowering::addTypeForNEON(EVT VT, EVT PromotedLdStVT, } setOperationAction(ISD::BUILD_VECTOR, VT.getSimpleVT(), Custom); setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom); - if (llvm::ModelWithRegSequence()) - setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Legal); - else - setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Custom); + setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Legal); setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Expand); setOperationAction(ISD::SELECT, VT.getSimpleVT(), Expand); setOperationAction(ISD::SELECT_CC, VT.getSimpleVT(), Expand); |

