aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/exp_ch3.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/exp_ch3.adb')
-rw-r--r--gcc/ada/exp_ch3.adb10
1 files changed, 4 insertions, 6 deletions
diff --git a/gcc/ada/exp_ch3.adb b/gcc/ada/exp_ch3.adb
index 88abe91..354d6ba 100644
--- a/gcc/ada/exp_ch3.adb
+++ b/gcc/ada/exp_ch3.adb
@@ -1554,22 +1554,20 @@ package body Exp_Ch3 is
if Needs_Conditional_Null_Excluding_Check (Full_Init_Type) then
- -- Look at the associated node for the object we are referencing and
- -- verify that we are expanding a call to an Init_Proc for an
+ -- Look at the associated node for the object we are referencing
+ -- and verify that we are expanding a call to an Init_Proc for an
-- internally generated object declaration before passing True and
-- skipping the relevant checks.
if Nkind (Id_Ref) in N_Has_Entity
and then Comes_From_Source (Associated_Node (Id_Ref))
then
- Append_To (Args,
- New_Occurrence_Of (Standard_True, Loc));
+ Append_To (Args, New_Occurrence_Of (Standard_True, Loc));
-- Otherwise, we pass False to perform null-excluding checks
else
- Append_To (Args,
- New_Occurrence_Of (Standard_False, Loc));
+ Append_To (Args, New_Occurrence_Of (Standard_False, Loc));
end if;
end if;