= (Is_Packed (gnat_entity)
|| Is_Packed_Array_Impl_Type (gnat_entity));
+ TYPE_BIT_PACKED_ARRAY_TYPE_P (tem)
+ = (Is_Packed_Array_Impl_Type (gnat_entity)
+ ? Is_Bit_Packed_Array (Original_Array_Type (gnat_entity))
+ : Is_Bit_Packed_Array (gnat_entity));
+
if (Treat_As_Volatile (gnat_entity))
tem = change_qualified_type (tem, TYPE_QUAL_VOLATILE);
TYPE_BIT_PACKED_ARRAY_TYPE_P (gnu_type)
= (Is_Packed_Array_Impl_Type (gnat_entity)
- && Is_Bit_Packed_Array (Original_Array_Type (gnat_entity)));
+ ? Is_Bit_Packed_Array (Original_Array_Type (gnat_entity))
+ : Is_Bit_Packed_Array (gnat_entity));
/* If the maximum size doesn't overflow, use it. */
if (gnu_max_size
{
tree type = const_cast<tree> (const_type);
tree first_dimen, dimen;
- bool is_packed_array, is_array;
+ bool is_bit_packed_array, is_array;
int i;
/* Temporaries created in the first pass and used in the second one for thin
tree thinptr_template_expr = NULL_TREE;
tree thinptr_bound_field = NULL_TREE;
- /* If we have an implementation type for a packed array, get the orignial
+ /* If we have an implementation type for a packed array, get the original
array type. */
if (TYPE_IMPL_PACKED_ARRAY_P (type) && TYPE_ORIGINAL_PACKED_ARRAY (type))
{
+ is_bit_packed_array = BIT_PACKED_ARRAY_TYPE_P (type);
type = TYPE_ORIGINAL_PACKED_ARRAY (type);
- is_packed_array = true;
}
else
- is_packed_array = false;
+ is_bit_packed_array = false;
/* First pass: gather all information about this array except everything
related to dimensions. */
order, so our view here has reversed dimensions. */
const bool convention_fortran_p = TYPE_CONVENTION_FORTRAN_P (first_dimen);
- if (TYPE_PACKED (first_dimen))
- is_packed_array = true;
+ if (BIT_PACKED_ARRAY_TYPE_P (first_dimen))
+ is_bit_packed_array = true;
/* ??? For row major ordering, we probably want to emit nothing and
instead specify it as the default in Dw_TAG_compile_unit. */
/* We need to specify a bit stride when it does not correspond to the
natural size of the contained elements. ??? Note that we do not
support packed records and nested packed arrays. */
- else if (is_packed_array)
+ else if (is_bit_packed_array)
{
info->stride = get_array_bit_stride (info->element_type);
info->stride_in_bits = true;