Commit e138174b by Ian Lance Taylor

(output_prolog): Use RS6000_ITRUNC and RS6000_UITRUNC, not "itrunc" and

"uitrunc".

From-SVN: r6562
parent 3c64f04b
...@@ -1418,7 +1418,8 @@ output_prolog (file, size) ...@@ -1418,7 +1418,8 @@ output_prolog (file, size)
/* Write .extern for truncation routines, if needed. */ /* Write .extern for truncation routines, if needed. */
if (rs6000_trunc_used && ! trunc_defined) 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; trunc_defined = 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment