Commit f44fefca by Richard Henderson Committed by Richard Henderson

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

From-SVN: r48251
parent e97b32d9
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> 2001-12-20 Tom Tromey <tromey@redhat.com>
For PR java/4509: For PR java/4509:
......
...@@ -1089,6 +1089,7 @@ build_class_ref (type) ...@@ -1089,6 +1089,7 @@ build_class_ref (type)
decl = build_decl (VAR_DECL, decl_name, class_type_node); decl = build_decl (VAR_DECL, decl_name, class_type_node);
TREE_STATIC (decl) = 1; TREE_STATIC (decl) = 1;
TREE_PUBLIC (decl) = 1; TREE_PUBLIC (decl) = 1;
DECL_EXTERNAL (decl) = 1;
make_decl_rtl (decl, NULL); make_decl_rtl (decl, NULL);
pushdecl_top_level (decl); pushdecl_top_level (decl);
if (is_compiled == 1) if (is_compiled == 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment