aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>1994-02-15 16:11:51 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>1994-02-15 16:11:51 +0000
commite138174b5bb3bb71d73f32f430dc4da435222005 (patch)
treea07213de748fc5749488a2e71c695ef9bb425262 /gcc
parent3c64f04b4ffd2ff1a055a00ee036ab5ea4bfc180 (diff)
downloadgcc-e138174b5bb3bb71d73f32f430dc4da435222005.zip
gcc-e138174b5bb3bb71d73f32f430dc4da435222005.tar.gz
gcc-e138174b5bb3bb71d73f32f430dc4da435222005.tar.bz2
(output_prolog): Use RS6000_ITRUNC and RS6000_UITRUNC, not "itrunc" and
"uitrunc". From-SVN: r6562
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/rs6000/rs6000.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index e063e89..ecbf963 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;
}