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

2006-07-04  Andrew Haley  <aph@redhat.com>

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

From-SVN: r115178
This commit is contained in:
Andrew Haley 2006-07-04 15:26:42 +00:00 committed by Andrew Haley
parent dbc02e7f4c
commit 8a71d22bdd
2 changed files with 6 additions and 0 deletions

View 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

View 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;