Attribute Initialized is expanded into Valid_Scalars, which can't work
on unchecked unions, so Initialized on unchecked unions needs to be
rejected before expansion.
gcc/ada/
* sem_attr.adb (Analyze_Attribute): Reject attribute Initialized
on unchecked unions; fix grammar in comment.
if Comes_From_Source (N) then
- -- This attribute be prefixed with references to objects or
+ -- This attribute can be prefixed with references to objects or
-- values (such as a current instance value given within a type
-- or subtype aspect).
and then not Is_Current_Instance_Reference_In_Type_Aspect (P)
then
Error_Attr_P ("prefix of % attribute must be object");
+
+ -- Just like attribute 'Valid_Scalars this attribute is illegal
+ -- on unchecked union types.
+
+ elsif Has_Unchecked_Union (Validated_View (P_Type)) then
+ Error_Attr_P
+ ("attribute % not allowed for Unchecked_Union type");
end if;
end if;