rs6000.c (rs6000_output_function_epilogue): Remove handling of obsolete language CHILL.

* config/rs6000/rs6000.c (rs6000_output_function_epilogue): Remove
	handling of obsolete language CHILL.

From-SVN: r74634
This commit is contained in:
Andreas Jaeger 2003-12-15 16:23:11 +01:00 committed by Andreas Jaeger
parent e8423af96d
commit 3a5c1f603e
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2003-12-15 Andreas Jaeger <aj@suse.de>
* config/rs6000/rs6000.c (rs6000_output_function_epilogue): Remove
handling of obsolete language CHILL.
2003-12-15 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* tree.c (initializer_zerop): Add test for empty set.

View File

@ -12538,8 +12538,7 @@ rs6000_output_function_epilogue (FILE *file,
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. There is no official value
for Chill, so we've chosen 44 pseudo-randomly. */
although IBM appears to be using 13. */
if (! strcmp (language_string, "GNU C")
|| ! strcmp (language_string, "GNU Objective-C"))
i = 0;
@ -12553,8 +12552,6 @@ rs6000_output_function_epilogue (FILE *file,
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);