From e138174b5bb3bb71d73f32f430dc4da435222005 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 15 Feb 1994 16:11:51 +0000 Subject: [PATCH] (output_prolog): Use RS6000_ITRUNC and RS6000_UITRUNC, not "itrunc" and "uitrunc". From-SVN: r6562 --- gcc/config/rs6000/rs6000.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index e063e897b21..ecbf9634b98 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -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; } -- 2.30.2