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
This commit is contained in:
parent
d9b14b120c
commit
c7c6340790
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
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>
|
||||
|
||||
* typeck.c (convert): Do not check for TARGET_FLOAT_FORMAT.
|
||||
|
|
|
@ -1821,6 +1821,8 @@ make_class_data (tree type)
|
|||
field_index = static_count++;
|
||||
else if (uses_jv_markobj || !flag_reduced_reflection)
|
||||
field_index = instance_count++;
|
||||
else
|
||||
continue;
|
||||
VEC_quick_push (int, field_indexes, field_index);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue