diff options
author | Owen Anderson <resistor@mac.com> | 2010-11-02 01:24:55 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-11-02 01:24:55 +0000 |
commit | cf667be17b479fe276fd606b8fd72ccfa3065bb8 (patch) | |
tree | 6ecd9c507048d5a1856cb671d8aa2216c41919bb /lib/Target/ARM/ARMCodeEmitter.cpp | |
parent | 4053e63a4b2f54446e29ef5bdad64e43b3bf52d6 (diff) |
Add correct NEON encodings for vld2, vld3, and vld4 basic variants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMCodeEmitter.cpp')
-rw-r--r-- | lib/Target/ARM/ARMCodeEmitter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMCodeEmitter.cpp b/lib/Target/ARM/ARMCodeEmitter.cpp index 3fa9a9c724..429b1d3357 100644 --- a/lib/Target/ARM/ARMCodeEmitter.cpp +++ b/lib/Target/ARM/ARMCodeEmitter.cpp @@ -102,6 +102,7 @@ namespace { unsigned getMachineSoImmOpValue(unsigned SoImm); unsigned getAddrMode6RegisterOperand(const MachineInstr &MI); + unsigned getAddrMode6OffsetOperand(const MachineInstr &MI); unsigned getAddrModeSBit(const MachineInstr &MI, const TargetInstrDesc &TID) const; @@ -175,6 +176,8 @@ namespace { const { return 0; } unsigned getAddrMode6RegisterOperand(const MachineInstr &MI, unsigned Op) const { return 0; } + unsigned getAddrMode6OffsetOperand(const MachineInstr &MI, unsigned Op) + const { return 0; } unsigned getBitfieldInvertedMaskOpValue(const MachineInstr &MI, unsigned Op) const { return 0; } unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op) |