Commit 1f584163 by Doug Evans

(convert_move): Change name of truncsipsi to truncsipsi2

to conform to existing convention, same with extendpsisi.

From-SVN: r6678
parent c178c4f5
......@@ -969,13 +969,13 @@ convert_move (to, from, unsignedp)
if (from_mode != SImode)
from = convert_to_mode (SImode, from, unsignedp);
#ifdef HAVE_truncsipsi
if (HAVE_truncsipsi)
#ifdef HAVE_truncsipsi2
if (HAVE_truncsipsi2)
{
emit_unop_insn (CODE_FOR_truncsipsi, to, from, UNKNOWN);
emit_unop_insn (CODE_FOR_truncsipsi2, to, from, UNKNOWN);
return;
}
#endif /* HAVE_truncsipsi */
#endif /* HAVE_truncsipsi2 */
abort ();
}
......@@ -988,13 +988,13 @@ convert_move (to, from, unsignedp)
}
else
{
#ifdef HAVE_extendpsisi
if (HAVE_extendpsisi)
#ifdef HAVE_extendpsisi2
if (HAVE_extendpsisi2)
{
emit_unop_insn (CODE_FOR_extendpsisi, to, from, UNKNOWN);
emit_unop_insn (CODE_FOR_extendpsisi2, to, from, UNKNOWN);
return;
}
#endif /* HAVE_extendpsisi */
#endif /* HAVE_extendpsisi2 */
abort ();
}
}
......
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