mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
dbc02e7f4c
commit
8a71d22bdd
|
|
@ -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>
|
2006-06-21 Andrew Haley <aph@redhat.com>
|
||||||
|
|
||||||
* java-tree.h (update_aliases): Remove
|
* java-tree.h (update_aliases): Remove
|
||||||
|
|
|
||||||
|
|
@ -1130,6 +1130,7 @@ build_fieldref_cache_entry (int index, tree fdecl ATTRIBUTE_UNUSED)
|
||||||
TREE_PUBLIC (decl) = 0;
|
TREE_PUBLIC (decl) = 0;
|
||||||
DECL_EXTERNAL (decl) = 0;
|
DECL_EXTERNAL (decl) = 0;
|
||||||
DECL_ARTIFICIAL (decl) = 1;
|
DECL_ARTIFICIAL (decl) = 1;
|
||||||
|
DECL_IGNORED_P (decl) = 1;
|
||||||
pushdecl_top_level (decl);
|
pushdecl_top_level (decl);
|
||||||
}
|
}
|
||||||
return decl;
|
return decl;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue