Commit 522ae84c by Richard Stallman

(emit_store_flag): Add missing arg to convert_move.

From-SVN: r3437
parent 1efe6448
...@@ -2940,7 +2940,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep) ...@@ -2940,7 +2940,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
conversion now. */ conversion now. */
if (target_mode != compare_mode) if (target_mode != compare_mode)
{ {
convert_move (target, op0); convert_move (target, op0, 0);
return target; return target;
} }
else else
......
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