aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-11-04 07:38:48 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-11-04 07:38:48 +0000
commitb9f51cbe983c0635625982a8ab5dd2158e063b74 (patch)
tree6669952d98b163135ab3fd460a53d53fc72733b5 /lib
parente6b5a52a42a31d2d6e90338c5c4329b78afd8828 (diff)
downloadexternal_llvm-b9f51cbe983c0635625982a8ab5dd2158e063b74.zip
external_llvm-b9f51cbe983c0635625982a8ab5dd2158e063b74.tar.gz
external_llvm-b9f51cbe983c0635625982a8ab5dd2158e063b74.tar.bz2
The .n suffix must go after the predicate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMInstrThumb.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb.td b/lib/Target/ARM/ARMInstrThumb.td
index ba68f8f..5d02925 100644
--- a/lib/Target/ARM/ARMInstrThumb.td
+++ b/lib/Target/ARM/ARMInstrThumb.td
@@ -329,7 +329,7 @@ def tRestore : T1pIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr), IIC_iLoadi,
// FIXME: Use ldr.n to work around a Darwin assembler bug.
let canFoldAsLoad = 1 in
def tLDRpci : T1pIs<(outs tGPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
- "ldr.n", "\t$dst, $addr",
+ "ldr", ".n\t$dst, $addr",
[(set tGPR:$dst, (load (ARMWrapper tconstpool:$addr)))]>;
// Special LDR for loads from non-pc-relative constpools.