gcc/ada/
* sem_attr.adb (Analyze_Attribute): Merge identical code for
Denorm and Signed_Zeros attributes.
-- Denorm --
------------
- when Attribute_Denorm =>
+ when Attribute_Denorm
+ | Attribute_Signed_Zeros
+ =>
Check_Floating_Point_Type_0;
Set_Etype (N, Standard_Boolean);
-- Signed_Zeros --
------------------
- when Attribute_Signed_Zeros =>
- Check_Floating_Point_Type_0;
- Set_Etype (N, Standard_Boolean);
+ -- Shares processing with Denorm attribute
----------
-- Size --