Commit be0c7ff4 by Per Bothner Committed by Per Bothner

jcf-write.c (generate_classfile): Check that field is primitive or string before…

jcf-write.c (generate_classfile): Check that field is primitive or string before emitting ConstantValue attribute.


	* jcf-write.c (generate_classfile):  Check that field is primitive
	or string before emitting ConstantValue attribute.

From-SVN: r45306
parent f0cdee96
2001-08-30 Per Bothner <per@bothner.com>
* jcf-write.c (generate_classfile): Check that field is primitive
or string before emitting ConstantValue attribute.
2001-08-30 Per Bothner <per@bothner.com>
* parse.y (resolve_qualified_expression_name): If creating a
COMPOUND_EXPR, set it's type correctly.
......
......@@ -2885,7 +2885,9 @@ generate_classfile (clas, state)
PUT2(i);
have_value = DECL_INITIAL (part) != NULL_TREE
&& FIELD_STATIC (part) && CONSTANT_VALUE_P (DECL_INITIAL (part))
&& FIELD_FINAL (part);
&& FIELD_FINAL (part)
&& (JPRIMITIVE_TYPE_P (TREE_TYPE (part))
|| TREE_TYPE (part) == string_ptr_type_node);
if (have_value)
attr_count++;
......
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