From: Richard Stallman Date: Mon, 8 Feb 1993 04:34:45 +0000 (+0000) Subject: (emit_store_flag): Add missing arg to convert_move. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=522ae84c3d96ed02964c532a87d9fb20a0432a17;p=gcc.git (emit_store_flag): Add missing arg to convert_move. From-SVN: r3437 --- diff --git a/gcc/expmed.c b/gcc/expmed.c index 375b9f67737..84ddc1bf218 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -2940,7 +2940,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep) conversion now. */ if (target_mode != compare_mode) { - convert_move (target, op0); + convert_move (target, op0, 0); return target; } else