From: Piotr Trojanek Date: Fri, 30 Sep 2022 14:56:37 +0000 (+0200) Subject: ada: Fix inserting of validity checks in lock-free protected subprograms X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3da783c5f93d10396d9ad5bf1f3fc68241f50850;p=platform%2Fupstream%2Fgcc.git ada: Fix inserting of validity checks in lock-free protected subprograms Validity checks for statements in a lock-free implementation of protected subprogram were wrongly inserted in front of the original statements. This happened because the lock-free implementation was created as a shallow copy, where only the protected body statements were copied while its children still had the Parent pointing to the original statements. gcc/ada/ * exp_ch9.adb (Build_Lock_Free_Protected_Subprogram_Body): Replace shallow copy of protected statements with a deep copy. --- diff --git a/gcc/ada/exp_ch9.adb b/gcc/ada/exp_ch9.adb index 8abff55..decf617 100644 --- a/gcc/ada/exp_ch9.adb +++ b/gcc/ada/exp_ch9.adb @@ -2797,7 +2797,7 @@ package body Exp_Ch9 is Expected_Comp : Entity_Id; Stmt : Node_Id; Stmts : List_Id := - New_Copy_List (Statements (Hand_Stmt_Seq)); + New_Copy_List_Tree (Statements (Hand_Stmt_Seq)); Typ_Size : Int; Unsigned : Entity_Id;