]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
class.c (build_fieldref_cache_entry): Set DECL_IGNORED_P on the entry.
authorAndrew Haley <aph@redhat.com>
Tue, 4 Jul 2006 15:26:42 +0000 (15:26 +0000)
committerAndrew Haley <aph@gcc.gnu.org>
Tue, 4 Jul 2006 15:26:42 +0000 (15:26 +0000)
2006-07-04  Andrew Haley  <aph@redhat.com>

        * class.c (build_fieldref_cache_entry): Set DECL_IGNORED_P on the
        entry.

From-SVN: r115178

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

index 9a116078bc6d48cccf7c81a46f3e4d698874b018..f923536dc016b376e2b8e4f412baf5d1a4e295f1 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 10992b870a34d446759ad2097bfefd71e835a29b..cdb298e77a1e0f494f7478c27827cf322b7fd3a0 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;