Commit 66e06429 by Anthony Green Committed by Anthony Green

expr.c (java_lang_expand_expr): Mark static array data as referenced.

        * expr.c (java_lang_expand_expr): Mark static array data as
        referenced.

From-SVN: r28714
parent 7ede7de6
1999-08-14 Anthony Green <green@cygnus.com>
* expr.c (java_lang_expand_expr): Mark static array data as
referenced.
Tue Aug 10 00:28:31 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> Tue Aug 10 00:28:31 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* jvgenmain.c (main): NUL-terminate name_obstack. * jvgenmain.c (main): NUL-terminate name_obstack.
......
...@@ -1944,6 +1944,7 @@ java_lang_expand_expr (exp, target, tmode, modifier) ...@@ -1944,6 +1944,7 @@ java_lang_expand_expr (exp, target, tmode, modifier)
DECL_INITIAL (init_decl) = init; DECL_INITIAL (init_decl) = init;
DECL_IGNORED_P (init_decl) = 1; DECL_IGNORED_P (init_decl) = 1;
TREE_READONLY (init_decl) = 1; TREE_READONLY (init_decl) = 1;
TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (init_decl)) = 1;
make_decl_rtl (init_decl, NULL, 1); make_decl_rtl (init_decl, NULL, 1);
init = init_decl; init = init_decl;
} }
......
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