(output_prolog): Use RS6000_ITRUNC and RS6000_UITRUNC, not "itrunc" and
authorIan Lance Taylor <ian@gcc.gnu.org>
Tue, 15 Feb 1994 16:11:51 +0000 (16:11 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Tue, 15 Feb 1994 16:11:51 +0000 (16:11 +0000)
"uitrunc".

From-SVN: r6562

gcc/config/rs6000/rs6000.c

index e063e897b21b9738299168c7113e21c746f73e71..ecbf9634b98bd8274d53aa9f6561f9ac1a869953 100644 (file)
@@ -1418,7 +1418,8 @@ output_prolog (file, size)
   /* Write .extern for truncation routines, if needed.  */
   if (rs6000_trunc_used && ! trunc_defined)
     {
-      fprintf (file, "\t.extern .itrunc\n\t.extern .uitrunc\n");
+      fprintf (file, "\t.extern .%s\n\t.extern .%s\n",
+              RS6000_ITRUNC, RS6000_UITRUNC);
       trunc_defined = 1;
     }