Commit 6f573ff9 by Jeffrey A Law Committed by Jeff Law

* rs6000.c (output_epilogue): Handle Chill.

From-SVN: r22443
parent e7d99f1e
......@@ -9,6 +9,8 @@ Wed Sep 16 00:30:56 1998 Geoff Keating <geoffk@ozemail.com.au>
Tue Sep 15 22:59:52 1998 Jeffrey A Law (law@cygnus.com)
* rs6000.c (output_epilogue): Handle Chill.
* mn10200.h (ASM_OUTPUT_DWARF2_ADDR_CONST): Define.
* mn10300.h (ASM_OUTPUT_DWARF2_ADDR_CONST): Define.
......
......@@ -4254,7 +4254,8 @@ output_epilog (file, size)
official way to get this info, so we use language_string. C
is 0. C++ is 9. No number defined for Obj-C, so use the
value for C for now. There is no official value for Java,
although IBM appears to be using 13. */
although IBM appears to be using 13. There is no official value
for Chill, so we've choosen 44 pseudo-randomly. */
if (! strcmp (language_string, "GNU C")
|| ! strcmp (language_string, "GNU Obj-C"))
i = 0;
......@@ -4268,6 +4269,8 @@ output_epilog (file, size)
i = 9;
else if (! strcmp (language_string, "GNU Java"))
i = 13;
else if (! strcmp (language_string, "GNU CHILL"))
i = 44;
else
abort ();
fprintf (file, "%d,", i);
......
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