mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-03 11:10:47 +08:00
[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:
parent
f29e9e8896
commit
9eb55045f8
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user