From 1f584163ee7bdd8cf21cf9c4063b18e7298d1072 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Mon, 28 Feb 1994 23:31:01 +0000 Subject: [PATCH] (convert_move): Change name of truncsipsi to truncsipsi2 to conform to existing convention, same with extendpsisi. From-SVN: r6678 --- gcc/expr.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gcc/expr.c b/gcc/expr.c index a492676ba1a..23b009a7fd2 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -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 (); } } -- 2.30.2