projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aeacab2
)
Thumb asm syntax does not want 's' suffix for flag setting opcodes.
author
Evan Cheng
<evan.cheng@apple.com>
Wed, 31 Jan 2007 20:12:31 +0000
(20:12 +0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Wed, 31 Jan 2007 20:12:31 +0000
(20:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33717
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/ARM/ARMInstrThumb.td
patch
|
blob
|
history
diff --git
a/lib/Target/ARM/ARMInstrThumb.td
b/lib/Target/ARM/ARMInstrThumb.td
index c5a48fcd0db31d3216f369889ad793612ba7814b..5fbd4121c43ce849d5134b6bf9653da68ecaffa8 100644
(file)
--- a/
lib/Target/ARM/ARMInstrThumb.td
+++ b/
lib/Target/ARM/ARMInstrThumb.td
@@
-284,7
+284,7
@@
def tADC : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
[(set GPR:$dst, (adde GPR:$lhs, GPR:$rhs))]>;
def tADDS : TI<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
- "add
s
$dst, $lhs, $rhs",
+ "add $dst, $lhs, $rhs",
[(set GPR:$dst, (addc GPR:$lhs, GPR:$rhs))]>;
@@
-423,7
+423,7
@@
def tSBC : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
[(set GPR:$dst, (sube GPR:$lhs, GPR:$rhs))]>;
def tSUBS : TI<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
- "sub
s
$dst, $lhs, $rhs",
+ "sub $dst, $lhs, $rhs",
[(set GPR:$dst, (subc GPR:$lhs, GPR:$rhs))]>;