diff options
author | Hristian Kirtchev <kirtchev@adacore.com> | 2016-07-04 10:19:10 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2016-07-04 12:19:10 +0200 |
commit | c308e7620eccfbb8f0b5859aab351e3192d761c1 (patch) | |
tree | 517b604b4f76308f98fafb0a39765f69077d51e7 /gcc/ada/sem_ch12.adb | |
parent | f50f7e2c00bb3cbf404b241d88af8697b33d2279 (diff) | |
download | gcc-c308e7620eccfbb8f0b5859aab351e3192d761c1.zip gcc-c308e7620eccfbb8f0b5859aab351e3192d761c1.tar.gz gcc-c308e7620eccfbb8f0b5859aab351e3192d761c1.tar.bz2 |
sem_ch3.adb, [...]: Minor reformatting.
2016-07-04 Hristian Kirtchev <kirtchev@adacore.com>
* sem_ch3.adb, sem_type.adb, sem_ch12.adb, xref_lib.adb,
freeze.adb, sinput-l.adb, sinput-l.ads, sem_ch4.adb, sem_ch8.adb:
Minor reformatting.
From-SVN: r237965
Diffstat (limited to 'gcc/ada/sem_ch12.adb')
-rw-r--r-- | gcc/ada/sem_ch12.adb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/ada/sem_ch12.adb b/gcc/ada/sem_ch12.adb index 8e38db0..ae04a9d 100644 --- a/gcc/ada/sem_ch12.adb +++ b/gcc/ada/sem_ch12.adb @@ -15152,12 +15152,13 @@ package body Sem_Ch12 is procedure Set_Copied_Sloc_For_Inherited_Pragma (N : Node_Id; - E : Entity_Id) is + E : Entity_Id) + is begin Create_Instantiation_Source (N, E, Inlined_Body => False, Inherited_Pragma => True, - A => S_Adjustment); + Factor => S_Adjustment); end Set_Copied_Sloc_For_Inherited_Pragma; -------------------------------------- @@ -15169,7 +15170,7 @@ package body Sem_Ch12 is Create_Instantiation_Source (N, E, Inlined_Body => True, Inherited_Pragma => False, - A => S_Adjustment); + Factor => S_Adjustment); end Set_Copied_Sloc_For_Inlined_Body; --------------------- |