[llvm-commits] [llvm] r75187 - /llvm/trunk/lib/Target/ARM/ARMInstrInfo.td
Evan Cheng
evan.cheng at apple.com
Thu Jul 9 15:57:42 PDT 2009
Author: evancheng
Date: Thu Jul 9 17:57:41 2009
New Revision: 75187
URL: http://llvm.org/viewvc/llvm-project?rev=75187&view=rev
Log:
LDM_RET should be marked mayLoad.
Modified:
llvm/trunk/lib/Target/ARM/ARMInstrInfo.td
Modified: llvm/trunk/lib/Target/ARM/ARMInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrInfo.td?rev=75187&r1=75186&r2=75187&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrInfo.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrInfo.td Thu Jul 9 17:57:41 2009
@@ -603,7 +603,7 @@
// 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",
More information about the llvm-commits
mailing list