diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2022-01-13 22:29:01 +0100 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2022-05-09 09:27:35 +0000 |
commit | 00b21aa982e71575f2a403c94e8086eb2a6264d2 (patch) | |
tree | 47dfed3ef75995f790def9cb393f424c5763c8dd /gcc/ada/gnatxref.adb | |
parent | 7ded77bbce506b12a4f2bbe751b304ebdcb9af27 (diff) | |
download | gcc-00b21aa982e71575f2a403c94e8086eb2a6264d2.zip gcc-00b21aa982e71575f2a403c94e8086eb2a6264d2.tar.gz gcc-00b21aa982e71575f2a403c94e8086eb2a6264d2.tar.bz2 |
[Ada] Fix indentation of "Start of processing for ..." labels
The "Start of processing for ..." labels should be aligned with the
BEGIN that follows. Violations found with:
$ grep -Pzo "( *) \-\- Start of processing for \w+\n\n\1begin" *.adb
and corrected manually, because some of them had to be entirely removed.
Also, remove trailing semicolons found while guessing the grep pattern.
gcc/ada/
* exp_aggr.adb, exp_ch3.adb, exp_util.adb, freeze.adb,
gnatfind.adb, gnatlink.adb, gnatxref.adb, gprep.adb,
libgnat/a-cfhama.adb, libgnat/g-alleve.adb, sem_ch12.adb,
sem_ch13.adb, xr_tabls.adb: Fix style labels.
Diffstat (limited to 'gcc/ada/gnatxref.adb')
-rw-r--r-- | gcc/ada/gnatxref.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/gnatxref.adb b/gcc/ada/gnatxref.adb index c9f234c..9499d11 100644 --- a/gcc/ada/gnatxref.adb +++ b/gcc/ada/gnatxref.adb @@ -74,7 +74,7 @@ procedure Gnatxref is procedure Check_Version_And_Help is new Check_Version_And_Help_G (Usage); - -- Start of processing for Parse_Cmd_Line + -- Start of processing for Parse_Cmd_Line begin -- First check for --version or --help |