mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-13 07:50:50 +00:00
Thumb asm syntax does not want 's' suffix for flag setting opcodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33717 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aeacab2e6d
commit
3471b60e95
@ -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),
|
||||
"adds $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),
|
||||
"subs $dst, $lhs, $rhs",
|
||||
"sub $dst, $lhs, $rhs",
|
||||
[(set GPR:$dst, (subc GPR:$lhs, GPR:$rhs))]>;
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user