[Ada] Fix deleted Compile_Time warnings causing crashes
Commit Message
Count_Compile_Time_Pragma_Warnings also counted deleted pragmas. This
caused discrepancies ultimately leading to a crash when Compile_Time
warnings were suppressed by a Warnings(Off, ...) pragma.
Tested on x86_64-pc-linux-gnu, committed on trunk
gcc/ada/
* erroutc.adb (Count_Compile_Time_Pragma_Warnings): Don't count
deleted warnings.
@@ -277,7 +277,9 @@ package body Erroutc is
begin
for J in 1 .. Errors.Last loop
begin
- if Errors.Table (J).Warn and Errors.Table (J).Compile_Time_Pragma
+ if Errors.Table (J).Warn
+ and then Errors.Table (J).Compile_Time_Pragma
+ and then not Errors.Table (J).Deleted
then
Result := Result + 1;
end if;