* class.c (build_class_ref): Mark _Jv_fooClass DECL_EXTERNAL.

From-SVN: r48251
This commit is contained in:
Richard Henderson 2001-12-21 11:26:08 -08:00 committed by Richard Henderson
parent e97b32d909
commit f44fefca1a
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-12-21 Richard Henderson <rth@redhat.com>
* class.c (build_class_ref): Mark _Jv_fooClass DECL_EXTERNAL.
2001-12-20 Tom Tromey <tromey@redhat.com>
For PR java/4509:

View File

@ -1089,6 +1089,7 @@ build_class_ref (type)
decl = build_decl (VAR_DECL, decl_name, class_type_node);
TREE_STATIC (decl) = 1;
TREE_PUBLIC (decl) = 1;
DECL_EXTERNAL (decl) = 1;
make_decl_rtl (decl, NULL);
pushdecl_top_level (decl);
if (is_compiled == 1)