[Ada] Compiler crash on assertion pragma in ghost region

gcc/ada/

	* sem_prag.adb (Analyze_Pragma): Mark relevant pragmas as ghost
	when they are within a ghost region.
This commit is contained in:
Justin Squirek 2020-10-06 15:01:15 -04:00 committed by Pierre-Marie de Rodat
parent 42b91d9a74
commit 78004c41f7

View File

@ -11437,6 +11437,12 @@ package body Sem_Prag is
end if;
end if;
-- Mark assertion pragmas as Ghost depending on their enclosing context
if Assertion_Expression_Pragma (Prag_Id) then
Mark_Ghost_Pragma (N, Current_Scope);
end if;
-- Preset arguments
Arg_Count := 0;