diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1994-02-15 16:11:51 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1994-02-15 16:11:51 +0000 |
commit | e138174b5bb3bb71d73f32f430dc4da435222005 (patch) | |
tree | a07213de748fc5749488a2e71c695ef9bb425262 | |
parent | 3c64f04b4ffd2ff1a055a00ee036ab5ea4bfc180 (diff) | |
download | gcc-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
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 3 |
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; } |