(convert_move): Change name of truncsipsi to truncsipsi2
authorDoug Evans <dje@gnu.org>
Mon, 28 Feb 1994 23:31:01 +0000 (23:31 +0000)
committerDoug Evans <dje@gnu.org>
Mon, 28 Feb 1994 23:31:01 +0000 (23:31 +0000)
to conform to existing convention, same with extendpsisi.

From-SVN: r6678

gcc/expr.c

index a492676ba1a7cf2ce9a18b2d4f03924f8a777a00..23b009a7fd2533642d827dd1303f1b81cf07f5b0 100644 (file)
@@ -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 ();
        }
     }