diff options
author | Doug Evans <dje@gnu.org> | 1994-02-28 23:31:01 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-02-28 23:31:01 +0000 |
commit | 1f584163ee7bdd8cf21cf9c4063b18e7298d1072 (patch) | |
tree | 1a8bb3da9d4d6a9877092aa9c7e113250792ddb8 /gcc | |
parent | c178c4f503a8bbac4e647025cedef9d6fa8cde88 (diff) | |
download | gcc-1f584163ee7bdd8cf21cf9c4063b18e7298d1072.zip gcc-1f584163ee7bdd8cf21cf9c4063b18e7298d1072.tar.gz gcc-1f584163ee7bdd8cf21cf9c4063b18e7298d1072.tar.bz2 |
(convert_move): Change name of truncsipsi to truncsipsi2
to conform to existing convention, same with extendpsisi.
From-SVN: r6678
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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 (); } } |