[Ada] Don't crash on ghost packages when emitting CUDA symbols in ALI files

Before this commit, a GNAT compiled with assertions would crash when
attempting to emit CUDA symbols in ALI files for spark_mode/ghost
packages, whose content is a single null statement.

gcc/ada/

	* lib-writ.adb (Output_CUDA_Symbols): Check for null packages.
This commit is contained in:
Ghjuvan Lacambre 2022-03-14 09:58:52 +01:00 committed by Pierre-Marie de Rodat
parent f29e9e8896
commit 9eb55045f8

View File

@ -403,7 +403,9 @@ package body Lib.Writ is
Kernel_Elm : Elmt_Id;
Kernel : Entity_Id;
begin
if not Enable_CUDA_Expansion then
if not Enable_CUDA_Expansion
or else Nkind (Unit_Id) = N_Null_Statement
then
return;
end if;
Spec_Id := (if Nkind (Unit_Id) = N_Package_Body