diff options
author | Bob Duff <duff@adacore.com> | 2021-02-24 14:08:50 -0500 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2021-05-07 05:29:25 -0400 |
commit | 104f58db5f9cf759e9a223d5a3415d3a71849d79 (patch) | |
tree | 2f0967a7e10720d060c0dd66a0bf1f0440d31e24 /gcc/ada/frontend.adb | |
parent | 2e02ab86744ccc97cc65d739ca515cb7d3b882d2 (diff) | |
download | gcc-104f58db5f9cf759e9a223d5a3415d3a71849d79.zip gcc-104f58db5f9cf759e9a223d5a3415d3a71849d79.tar.gz gcc-104f58db5f9cf759e9a223d5a3415d3a71849d79.tar.bz2 |
[Ada] Minor reformattings
gcc/ada/
* par_sco.adb: Align with/use clauses.
(Traverse_Declarations_Or_Statements): Minor comment fix.
* aspects.adb, atree.adb, atree.ads, checks.adb, comperr.adb,
contracts.adb, cstand.adb, debug_a.adb, einfo-utils.adb,
errout.adb, eval_fat.adb, exp_aggr.adb, expander.adb,
exp_atag.adb, exp_attr.adb, exp_cg.adb, exp_ch11.adb,
exp_ch12.adb, exp_ch13.adb, exp_ch2.adb, exp_ch3.adb,
exp_ch4.adb, exp_ch5.adb, exp_ch6.adb, exp_ch7.adb, exp_ch8.adb,
exp_ch9.adb, exp_code.adb, exp_dbug.adb, exp_disp.adb,
exp_dist.adb, exp_fixd.adb, exp_imgv.adb, exp_intr.adb,
exp_pakd.adb, exp_prag.adb, exp_put_image.adb, exp_sel.adb,
exp_smem.adb, exp_spark.adb, exp_strm.adb, exp_tss.adb,
exp_unst.adb, exp_util.adb, exp_util.ads, freeze.adb,
frontend.adb, ghost.adb, gnat1drv.adb, gnat_cuda.adb,
impunit.adb, inline.adb, itypes.adb, itypes.ads, layout.adb,
lib.adb, lib-load.adb, lib-writ.adb, lib-xref.adb,
lib-xref-spark_specific.adb, live.adb, nlists.adb, par.adb,
par-ch11.adb, par-ch3.adb, par-ch5.adb, par-ch6.adb, pprint.adb,
repinfo.adb, restrict.adb, rtsfind.adb, scil_ll.adb, scn.adb,
sem.adb, sem_aggr.adb, sem_attr.adb, sem_aux.adb, sem_case.adb,
sem_cat.adb, sem_ch10.adb, sem_ch11.adb, sem_ch12.adb,
sem_ch13.adb, sem_ch2.adb, sem_ch3.adb, sem_ch4.adb,
sem_ch5.adb, sem_ch6.adb, sem_ch7.adb, sem_ch8.adb, sem_ch9.adb,
sem_dim.adb, sem_disp.adb, sem_dist.adb, sem_elab.adb,
sem_elim.adb, sem_eval.adb, sem_intr.adb, sem_mech.adb,
sem_prag.adb, sem_res.adb, sem_scil.adb, sem_smem.adb,
sem_type.adb, sem_util.adb, sem_util.ads, sem_warn.adb,
sinfo-cn.adb, sinfo-utils.ads, sinput.adb, sinput-l.adb,
sprint.adb, style.adb, styleg.adb, tbuild.adb, tbuild.ads,
treepr.adb, uname.adb: Align with/use clauses.
Diffstat (limited to 'gcc/ada/frontend.adb')
-rw-r--r-- | gcc/ada/frontend.adb | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/gcc/ada/frontend.adb b/gcc/ada/frontend.adb index 8d4636d..a65b3e1 100644 --- a/gcc/ada/frontend.adb +++ b/gcc/ada/frontend.adb @@ -25,49 +25,49 @@ with System.Strings; use System.Strings; -with Atree; use Atree; +with Atree; use Atree; with Checks; with CStand; -with Debug; use Debug; +with Debug; use Debug; with Elists; with Exp_Dbug; with Exp_Unst; with Fmap; with Fname.UF; -with Ghost; use Ghost; -with Inline; use Inline; -with Lib; use Lib; -with Lib.Load; use Lib.Load; +with Ghost; use Ghost; +with Inline; use Inline; +with Lib; use Lib; +with Lib.Load; use Lib.Load; with Lib.Xref; -with Live; use Live; -with Namet; use Namet; -with Nlists; use Nlists; -with Opt; use Opt; +with Live; use Live; +with Namet; use Namet; +with Nlists; use Nlists; +with Opt; use Opt; with Osint; with Par; with Prep; with Prepcomp; -with Restrict; use Restrict; -with Rident; use Rident; +with Restrict; use Restrict; +with Rident; use Rident; with Rtsfind; -with Snames; use Snames; +with Snames; use Snames; with Sprint; -with Scn; use Scn; -with Sem; use Sem; +with Scn; use Scn; +with Sem; use Sem; with Sem_Aux; with Sem_Ch8; with Sem_SCIL; -with Sem_Elab; use Sem_Elab; -with Sem_Prag; use Sem_Prag; +with Sem_Elab; use Sem_Elab; +with Sem_Prag; use Sem_Prag; with Sem_Warn; -with Sinfo; use Sinfo; -with Sinfo.Nodes; use Sinfo.Nodes; -with Sinfo.Utils; use Sinfo.Utils; -with Sinput; use Sinput; -with Sinput.L; use Sinput.L; +with Sinfo; use Sinfo; +with Sinfo.Nodes; use Sinfo.Nodes; +with Sinfo.Utils; use Sinfo.Utils; +with Sinput; use Sinput; +with Sinput.L; use Sinput.L; with SCIL_LL; -with Tbuild; use Tbuild; -with Types; use Types; +with Tbuild; use Tbuild; +with Types; use Types; with VAST; procedure Frontend is |