Commit c7c63407 by David Daney Committed by David Daney

class.c (make_class_data): Don't add field_index when flag_reduced_reflection set.

2008-08-21  David Daney  <ddaney@avtrex.com>

	* class.c (make_class_data): Don't add field_index when
	flag_reduced_reflection set.

From-SVN: r139397
parent d9b14b12
2008-08-21 David Daney <ddaney@avtrex.com>
* class.c (make_class_data): Don't add field_index when
flag_reduced_reflection set.
2008-08-12 Ulrich Weigand <uweigand@de.ibm.com> 2008-08-12 Ulrich Weigand <uweigand@de.ibm.com>
* typeck.c (convert): Do not check for TARGET_FLOAT_FORMAT. * typeck.c (convert): Do not check for TARGET_FLOAT_FORMAT.
......
...@@ -1821,6 +1821,8 @@ make_class_data (tree type) ...@@ -1821,6 +1821,8 @@ make_class_data (tree type)
field_index = static_count++; field_index = static_count++;
else if (uses_jv_markobj || !flag_reduced_reflection) else if (uses_jv_markobj || !flag_reduced_reflection)
field_index = instance_count++; field_index = instance_count++;
else
continue;
VEC_quick_push (int, field_indexes, field_index); VEC_quick_push (int, field_indexes, field_index);
} }
} }
......
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