Commit 8f791f2d by Torbjorn Granlund

(float_extend:DF recognizer): Add missing arg to output_asm_insn.

(float_truncate:SF recognizer): Likewise.

From-SVN: r4277
parent 1b61a40e
...@@ -811,7 +811,7 @@ ...@@ -811,7 +811,7 @@
"* "*
{ {
output_push_double(&operands[1]); output_push_double(&operands[1]);
output_asm_insn(\"call &2, _fdtos\"); output_asm_insn(\"call &2, _fdtos\", operands);
return \"\"; return \"\";
}") }")
...@@ -854,7 +854,7 @@ ...@@ -854,7 +854,7 @@
"* "*
{ {
output_asm_insn(\"pushw %1\", operands); output_asm_insn(\"pushw %1\", operands);
output_asm_insn(\"call &1, _fstod\"); output_asm_insn(\"call &1, _fstod\", operands);
return \"\"; return \"\";
}") }")
......
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