Commit 34a4625c by Richard Biener Committed by Richard Biener

re PR java/64044 (Java emits bogus .class$ decls)

2014-11-24  Richard Biener  <rguenther@suse.de>

	PR java/64004
	* class.c (build_classdollar_field): Do not set TREE_READONLY.

From-SVN: r218018
parent 8be2ce25
2014-11-24 Richard Biener <rguenther@suse.de>
PR java/64004
* class.c (build_classdollar_field): Do not set TREE_READONLY.
2014-11-19 David Malcolm <dmalcolm@redhat.com> 2014-11-19 David Malcolm <dmalcolm@redhat.com>
Merger of git branch "gimple-classes-v2-option-3". Merger of git branch "gimple-classes-v2-option-3".
......
...@@ -1085,7 +1085,6 @@ build_classdollar_field (tree type) ...@@ -1085,7 +1085,6 @@ build_classdollar_field (tree type)
TYPE_QUAL_CONST))); TYPE_QUAL_CONST)));
TREE_STATIC (decl) = 1; TREE_STATIC (decl) = 1;
TREE_CONSTANT (decl) = 1; TREE_CONSTANT (decl) = 1;
TREE_READONLY (decl) = 1;
TREE_PUBLIC (decl) = 1; TREE_PUBLIC (decl) = 1;
java_hide_decl (decl); java_hide_decl (decl);
DECL_IGNORED_P (decl) = 1; DECL_IGNORED_P (decl) = 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