[Ada] Add insertion character to Ineffective_Inline_Warnings messages

This enables tools that ingest GNAT's output to properly classify these
messages.

gcc/ada/

	* inline.adb (Check_Package_Body_For_Inlining): Add insertion
	character.
This commit is contained in:
Ghjuvan Lacambre 2022-04-26 09:55:04 +02:00 committed by Pierre-Marie de Rodat
parent 94cf3d1f78
commit 9baae5692b

View File

@ -2804,8 +2804,8 @@ package body Inline is
elsif Ineffective_Inline_Warnings then
Error_Msg_Unit_1 := Bname;
Error_Msg_N
("unable to inline subprograms defined in $??", P);
Error_Msg_N ("\body not found??", P);
("unable to inline subprograms defined in $?p?", P);
Error_Msg_N ("\body not found?p?", P);
return;
end if;
end if;