Commit 88e8ceff by Yannick Moy Committed by Pierre-Marie de Rodat

exp_disp.adb (Make_DT): Default initialize Ifaces_List and Ifaces_Comp_List.

2017-11-09  Yannick Moy  <moy@adacore.com>

	* exp_disp.adb (Make_DT): Default initialize Ifaces_List and
	Ifaces_Comp_List.

From-SVN: r254576
parent a5bd4027
2017-11-09 Yannick Moy <moy@adacore.com>
* exp_disp.adb (Make_DT): Default initialize Ifaces_List and
Ifaces_Comp_List.
2017-11-09 Pascal Obry <obry@adacore.com>
* libgnarl/s-taprop__mingw.adb: On Windows, initialize the thead handle
......
......@@ -5516,8 +5516,8 @@ package body Exp_Disp is
declare
TSD_Ifaces_List : constant List_Id := New_List;
Elmt : Elmt_Id;
Ifaces_List : Elist_Id;
Ifaces_Comp_List : Elist_Id;
Ifaces_List : Elist_Id := No_Elist;
Ifaces_Comp_List : Elist_Id := No_Elist;
Ifaces_Tag_List : Elist_Id;
Offset_To_Top : Node_Id;
Sec_DT_Tag : Node_Id;
......
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