OSDN Git Service

* config/rs6000/rs6000.c (rs6000_output_function_epilogue): Remove
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 15 Dec 2003 15:23:11 +0000 (15:23 +0000)
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 15 Dec 2003 15:23:11 +0000 (15:23 +0000)
handling of obsolete language CHILL.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74634 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index 5778a93..d35a599 100644 (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.
index 64780f4..34e53fd 100644 (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);