java-tree.h (IDENTIFIER_HANDLECLASS_VALUE): Remove ancient macro.
authorPer Bothner <per@bothner.com>
Tue, 1 Mar 2005 16:45:19 +0000 (08:45 -0800)
committerPer Bothner <bothner@gcc.gnu.org>
Tue, 1 Mar 2005 16:45:19 +0000 (08:45 -0800)
* java-tree.h (IDENTIFIER_HANDLECLASS_VALUE): Remove ancient macro.
Also improve commenst for IDENTIFIER_CLASS_VALUE.

From-SVN: r95747

gcc/java/ChangeLog
gcc/java/java-tree.h

index 5f9cd4a92274b2bd5c315f6b598e598c43747a15..ce77d68cd2640d968b8bcf19688459d08e822a4d 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-01  Per Bothner  <per@bothner.com>
+
+       * java-tree.h (IDENTIFIER_HANDLECLASS_VALUE): Remove ancient macro.
+
 2005-02-23  Thomas Fitzsimmons  <fitzsim@redhat.com>
 
        PR libgcj/16923
index bd7644604dd5ab894af1e7d43efa650584ae9d9b..7f58dfa7f5aa87546bf9adc292f291d34b0e55ed 100644 (file)
@@ -730,16 +730,11 @@ union lang_tree_node
 #define IDENTIFIER_LOCAL_VALUE(NODE)    \
   (((struct lang_identifier *)(NODE))->local_value)
 
-/* Given an identifier NODE, get the corresponding (non-handle) class.
-   For get_identifier ("java.lang.Number"), the result is
-   the struct whose DECL_ASSEMBLER_NAME is "Classjava_lang_Number". */
+/* Given an identifier NODE, get the corresponding class.
+   E.g. IDENTIFIER_CLASS_VALUE(get_identifier ("java.lang.Number"))
+   is the corresponding RECORD_TYPE. */
 #define IDENTIFIER_CLASS_VALUE(NODE) IDENTIFIER_GLOBAL_VALUE(NODE)
 
-/* Given an identifier NODE, get the corresponding handle class.
-   For get_identifier ("java.lang.Number"), the result is
-   the struct whose DECL_ASSEMBLER_NAME is "Hjava_lang_Number". */
-#define IDENTIFIER_HANDLECLASS_VALUE(NODE) ???
-
 /* Given a signature of a reference (or array) type, or a method, return the
    corresponding type (if one has been allocated).
    Do not use for primitive types, since they may be ambiguous.