Commit e67eb1a0 by Alexandre Petit-Bianco Committed by Alexandre Petit-Bianco

Fixing a really lame patch. Sorry for the ChangeLog tweaking.)

From-SVN: r34954
parent 98cd1bd5
2000-07-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
2000-07-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (generate_classfile): Exclude null strings.
* jcf-write.c (generate_classfile): Don't install ConstantValue
for null pointers.
2000-07-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
......
......@@ -2878,7 +2878,7 @@ generate_classfile (clas, state)
&& FIELD_STATIC (part)
&& (TREE_CODE (DECL_INITIAL (part)) == STRING_CST
|| (TREE_CODE (DECL_INITIAL (part)) == INTEGER_CST
&& !TREE_TYPE (part) == string_type_node)
&& TREE_CODE (TREE_TYPE (DECL_INITIAL (part))) != POINTER_TYPE)
|| TREE_CODE (DECL_INITIAL (part)) == REAL_CST);
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