Commit dbf663a9 by Thomas Quinot Committed by Arnaud Charlet

exp_ch2.adb (Param_Entity): Take the case of an expanded_name denoting a formal…

exp_ch2.adb (Param_Entity): Take the case of an expanded_name denoting a formal parameter into account.

2005-06-14  Thomas Quinot  <quinot@adacore.com>

	* exp_ch2.adb (Param_Entity): Take the case of an expanded_name
	denoting a formal parameter into account.

From-SVN: r101032
parent 643a0839
......@@ -713,7 +713,7 @@ package body Exp_Ch2 is
begin
-- Simple reference case
if Nkind (N) = N_Identifier then
if Nkind (N) = N_Identifier or else Nkind (N) = N_Expanded_Name then
if Is_Formal (Entity (N)) then
return Entity (N);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment