Commit 8ab0613c by Richard Kenner

(convert_move): Fix typo in extendqfh2 case.

From-SVN: r11267
parent 7d4ea832
......@@ -612,9 +612,9 @@ convert_move (to, from, unsignedp)
rtx value;
#ifdef HAVE_extendqfhf2
if (HAVE_extendqfsf2 && from_mode == QFmode && to_mode == HFmode)
if (HAVE_extendqfhf2 && from_mode == QFmode && to_mode == HFmode)
{
emit_unop_insn (CODE_FOR_extendqfsf2, to, from, UNKNOWN);
emit_unop_insn (CODE_FOR_extendqfhf2, to, from, UNKNOWN);
return;
}
#endif
......
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