OSDN Git Service

2006-07-04 Andrew Haley <aph@redhat.com>
authoraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Jul 2006 15:26:42 +0000 (15:26 +0000)
committeraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Jul 2006 15:26:42 +0000 (15:26 +0000)
        * class.c (build_fieldref_cache_entry): Set DECL_IGNORED_P on the
        entry.

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

gcc/java/ChangeLog
gcc/java/class.c

index 9a11607..f923536 100644 (file)
@@ -1,3 +1,8 @@
+2006-07-04  Andrew Haley  <aph@redhat.com>
+
+       * class.c (build_fieldref_cache_entry): Set DECL_IGNORED_P on the
+       entry.
+
 2006-06-21  Andrew Haley  <aph@redhat.com>
 
        * java-tree.h (update_aliases): Remove
index 10992b8..cdb298e 100644 (file)
@@ -1130,6 +1130,7 @@ build_fieldref_cache_entry (int index, tree fdecl ATTRIBUTE_UNUSED)
       TREE_PUBLIC (decl) = 0;
       DECL_EXTERNAL (decl) = 0;
       DECL_ARTIFICIAL (decl) = 1;
+      DECL_IGNORED_P (decl) = 1;
       pushdecl_top_level (decl);
     }
   return decl;