diff options
author | Robert Dewar <dewar@adacore.com> | 2006-02-15 10:42:27 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2006-02-15 10:42:27 +0100 |
commit | 4f73f89c47d52ef4575a3a553bdc1440959465db (patch) | |
tree | 60971654468700fd58602c5c228eb29285ac9c3f /gcc/ada/stylesw.ads | |
parent | 76346895e79e6849880261fbfc2cababb0382367 (diff) | |
download | gcc-4f73f89c47d52ef4575a3a553bdc1440959465db.zip gcc-4f73f89c47d52ef4575a3a553bdc1440959465db.tar.gz gcc-4f73f89c47d52ef4575a3a553bdc1440959465db.tar.bz2 |
par-ch6.adb, [...]: Implement -gnatyI switch (MODE_IN)
2006-02-13 Robert Dewar <dewar@adacore.com>
* par-ch6.adb, style.ads, styleg.adb, styleg.ads, stylesw.adb,
stylesw.ads, usage.adb, vms_data.ads: Implement -gnatyI switch
(MODE_IN)
From-SVN: r111081
Diffstat (limited to 'gcc/ada/stylesw.ads')
-rw-r--r-- | gcc/ada/stylesw.ads | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/stylesw.ads b/gcc/ada/stylesw.ads index 4dd6626..42e1774 100644 --- a/gcc/ada/stylesw.ads +++ b/gcc/ada/stylesw.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -155,6 +155,10 @@ package Stylesw is -- zero (a value of zero resets it to False). If True, it activates -- checking the maximum nesting level against Style_Max_Nesting_Level. + Style_Check_Mode_In : Boolean := False; + -- This can be set True by using -gnatyI. If True, it activates checking + -- that mode IN is not used on its own (since it is the default). + Style_Check_Order_Subprograms : Boolean := False; -- This can be set True by using the -gnatg or -gnatyo switch. If it -- is True, then names of subprogram bodies must be in alphabetical |