From: Javier Miranda Date: Mon, 8 Jul 2019 08:13:00 +0000 (+0000) Subject: [Ada] Spurious error reported by pragma Compile_Time_Error X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b91cdf756caafddf48433e6f93c4cc0049d292f8;p=gcc.git [Ada] Spurious error reported by pragma Compile_Time_Error The compiler may trigger spurious errors on pragmas Compile_Time_Error and Compile_Time_Warning when their boolean expression computes the size of a type. After this patch the following test compiles fine. with Interfaces; use Interfaces; package Types is type Arr is array (1 .. 6) of Unsigned_8 with Size => 48, Alignment => 1; type Rec is record Comp_1 : Unsigned_32; Comp_2 : Unsigned_16; end record with Size => 48, Alignment => 1; end Types; with Types; use Types; package Main is pragma Compile_Time_Error (Arr'Size = 12, "ERROR: Arr'Size is 48, not 12"); pragma Compile_Time_Error (Arr'Size = 48, "OK: Arr"); pragma Compile_Time_Error (Arr'Size /= 48, "ERROR: Arr'Size is 48"); pragma Compile_Time_Error (Rec'Size = 34, "ERROR: Rec'Size is 48, not 34"); pragma Compile_Time_Error (Rec'Size = 48, "OK: Rec"); pragma Compile_Time_Error (Rec'Size /= 48, "ERROR: Rec'Size is 48"); end Main; Command: gcc -c main.ads Output: main.ads:7:07: OK: Arr main.ads:14:07: OK: Rec 2019-07-08 Javier Miranda gcc/ada/ * sem_attr.adb (Analyze_Attribute [Attribute_Size]): For pragmas used to report user defined compile time warning or errors handle 'Size for types with known static RM size. From-SVN: r273200 --- diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 528556acc8b..9a86909fe68 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,9 @@ +2019-07-08 Javier Miranda + + * sem_attr.adb (Analyze_Attribute [Attribute_Size]): For pragmas + used to report user defined compile time warning or errors + handle 'Size for types with known static RM size. + 2019-07-08 Justin Squirek * exp_imgv.adb (Build_Enumeration_Image_Tables): Default SSO for diff --git a/gcc/ada/sem_attr.adb b/gcc/ada/sem_attr.adb index a3f9ffdb23b..4c6cba65a44 100644 --- a/gcc/ada/sem_attr.adb +++ b/gcc/ada/sem_attr.adb @@ -5848,8 +5848,19 @@ package body Sem_Attr is or else Ekind (Entity (P)) = E_Enumeration_Literal) and then Size_Known_At_Compile_Time (Entity (P)) then - Rewrite (N, Make_Integer_Literal (Sloc (N), Esize (Entity (P)))); - Analyze (N); + declare + Siz : Uint; + + begin + if Known_Static_RM_Size (Entity (P)) then + Siz := RM_Size (Entity (P)); + else + Siz := Esize (Entity (P)); + end if; + + Rewrite (N, Make_Integer_Literal (Sloc (N), Siz)); + Analyze (N); + end; end if; -----------