diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-09 20:43:13 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-09 20:43:13 +0000 |
commit | 1f32340d95ac480bfc74bcfd00fd5cffbe078652 (patch) | |
tree | 8ec8bd3b40b8d271273da288899b7e95a68309b4 /lib/Target/ARM | |
parent | 9c50e8b89076eacf8eb588449d5425cb9a755e9e (diff) | |
download | external_llvm-1f32340d95ac480bfc74bcfd00fd5cffbe078652.zip external_llvm-1f32340d95ac480bfc74bcfd00fd5cffbe078652.tar.gz external_llvm-1f32340d95ac480bfc74bcfd00fd5cffbe078652.tar.bz2 |
Automatically fold COPY instructions into stack load/store.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108012 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM')
-rw-r--r-- | lib/Target/ARM/ARMBaseInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMBaseInstrInfo.cpp b/lib/Target/ARM/ARMBaseInstrInfo.cpp index 902a29c..6a4bc7c 100644 --- a/lib/Target/ARM/ARMBaseInstrInfo.cpp +++ b/lib/Target/ARM/ARMBaseInstrInfo.cpp @@ -1204,7 +1204,7 @@ ARMBaseInstrInfo::canFoldMemoryOperand(const MachineInstr *MI, // FIXME: VMOVQQ and VMOVQQQQ? - return false; + return TargetInstrInfoImpl::canFoldMemoryOperand(MI, Ops); } /// Create a copy of a const pool value. Update CPI to the new index and return |