diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-07-09 22:57:41 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-07-09 22:57:41 +0000 |
commit | 7bd57f8b46a9a6d981fc22792fd9f6ccd83587ef (patch) | |
tree | 1484249e3b5c6f18efa52ba7c3725ca737471701 /lib/Target/ARM | |
parent | 9f5cf002e839d5f0646b323620310d6fef37b0ec (diff) | |
download | external_llvm-7bd57f8b46a9a6d981fc22792fd9f6ccd83587ef.zip external_llvm-7bd57f8b46a9a6d981fc22792fd9f6ccd83587ef.tar.gz external_llvm-7bd57f8b46a9a6d981fc22792fd9f6ccd83587ef.tar.bz2 |
LDM_RET should be marked mayLoad.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75187 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM')
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index cea0de2..3a29e9c 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -603,7 +603,7 @@ let isReturn = 1, isTerminator = 1 in // FIXME: $dst1 should be a def. But the extra ops must be in the end of the // operand list. // FIXME: Should pc be an implicit operand like PICADD, etc? -let isReturn = 1, isTerminator = 1 in +let isReturn = 1, isTerminator = 1, mayLoad = 1 in def LDM_RET : AXI4ld<(outs), (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops), LdStMulFrm, "ldm${p}${addr:submode} $addr, $dst1", |