[Ada] Reuse First_Formal for generic subprograms

gcc/ada/

	* lib-xref.adb (Generate_Reference_To_Formals): Remove dedicated
	branch for generic subprograms (they are now handled together
	with non-generic subprograms in the ELSE branch); replace a
	low-level Ekind membership test with a high-level call to
	Is_Access_Subprogram_Type.
This commit is contained in:
Piotr Trojanek
2021-01-07 12:17:49 +01:00
committed by Pierre-Marie de Rodat
parent 86203b44de
commit d20bab53d0
+1 -11
View File
@@ -1277,18 +1277,8 @@ package body Lib.Xref is
Formal : Entity_Id;
begin
if Is_Generic_Subprogram (E) then
Formal := First_Entity (E);
while Present (Formal)
and then not Is_Formal (Formal)
loop
Next_Entity (Formal);
end loop;
elsif Ekind (E) in Access_Subprogram_Kind then
if Is_Access_Subprogram_Type (E) then
Formal := First_Formal (Designated_Type (E));
else
Formal := First_Formal (E);
end if;