summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMInstrInfo.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-11-02 00:10:38 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-11-02 00:10:38 +0000
commit14635da94b6a5d4fce5ddd8748e01ce7b54add97 (patch)
tree0bbdb577e29b89b5f8391ff4649f095dd055c01d /llvm/lib/Target/ARM/ARMInstrInfo.cpp
parentea68c7c9a8ba5b791ffab2be4a554f44acef5690 (diff)
downloadbcm5719-llvm-14635da94b6a5d4fce5ddd8748e01ce7b54add97.tar.gz
bcm5719-llvm-14635da94b6a5d4fce5ddd8748e01ce7b54add97.zip
Use NEON reg-reg moves, where profitable. This reduces "domain-cross" stalls, when we used to mix vfp and neon code (the former were used for reg-reg moves)
llvm-svn: 85764
Diffstat (limited to 'llvm/lib/Target/ARM/ARMInstrInfo.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMInstrInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.cpp b/llvm/lib/Target/ARM/ARMInstrInfo.cpp
index c24c690f253..86bbe2a4c61 100644
--- a/llvm/lib/Target/ARM/ARMInstrInfo.cpp
+++ b/llvm/lib/Target/ARM/ARMInstrInfo.cpp
@@ -25,7 +25,7 @@
using namespace llvm;
ARMInstrInfo::ARMInstrInfo(const ARMSubtarget &STI)
- : RI(*this, STI), Subtarget(STI) {
+ : ARMBaseInstrInfo(STI), RI(*this, STI) {
}
unsigned ARMInstrInfo::getUnindexedOpcode(unsigned Opc) const {
OpenPOWER on IntegriCloud