Commit 1a72c2b7 by Torbjorn Granlund

(adddi3): Fix typo.

From-SVN: r2337
parent a5c8d722
...@@ -1347,9 +1347,9 @@ ...@@ -1347,9 +1347,9 @@
if (GET_CODE (operands[2]) == CONST_INT) if (GET_CODE (operands[2]) == CONST_INT)
{ {
if (INTVAL (operands[2]) >= 0) if (INTVAL (operands[2]) >= 0)
return \"addi %R2,%R1,%R0\;addc %1,0,%0\"; return \"addi %2,%R1,%R0\;addc %1,0,%0\";
else else
return \"addi %R2,%R1,%R0\;subb %1,0,%0\"; return \"addi %2,%R1,%R0\;subb %1,0,%0\";
} }
else else
return \"add %R2,%R1,%R0\;addc %2,%1,%0\"; return \"add %R2,%R1,%R0\;addc %2,%1,%0\";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment