Commit e64ac631 by Javier Miranda Committed by Pierre-Marie de Rodat

[Ada] Fix runtime stack overflow for out/in-out actuals without discr.

2018-12-11  Javier Miranda  <miranda@adacore.com>

gcc/ada/

	* exp_aggr.adb (Convert_To_Assignments): When gnerating C, do
	not declare a temporary to initialize an aggregate assigned to
	Out or In_Out parameters whose type has no discriminants. This
	avoids stack overflow errors at runtime.

From-SVN: r266988
parent 66f84da8
2018-12-11 Javier Miranda <miranda@adacore.com>
* exp_aggr.adb (Convert_To_Assignments): When gnerating C, do
not declare a temporary to initialize an aggregate assigned to
Out or In_Out parameters whose type has no discriminants. This
avoids stack overflow errors at runtime.
2018-12-11 Ed Schonberg <schonberg@adacore.com>
* exp_ch7.adb (Check_Unnesting_Elaboration_Code): Extend
......
......@@ -4245,6 +4245,22 @@ package body Exp_Aggr is
Build_Record_Aggr_Code (N, Typ, Target_Expr));
Rewrite (Parent (N), Make_Null_Statement (Loc));
-- Generating C, do not declare a temporary to initialize an aggregate
-- assigned to Out or In_Out parameters whose type has no discriminants.
-- This avoids stack overflow errors at run time.
elsif Modify_Tree_For_C
and then Nkind (Parent (N)) = N_Assignment_Statement
and then Nkind (Name (Parent (N))) = N_Identifier
and then Ekind_In (Entity (Name (Parent (N))), E_Out_Parameter,
E_In_Out_Parameter)
and then not Has_Discriminants (Etype (Entity (Name (Parent (N)))))
then
Target_Expr := New_Copy_Tree (Name (Parent (N)));
Insert_Actions (Parent (N),
Build_Record_Aggr_Code (N, Typ, Target_Expr));
Rewrite (Parent (N), Make_Null_Statement (Loc));
else
Temp := Make_Temporary (Loc, 'A', 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