diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-16 12:41:04 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-16 12:41:04 +0000 |
commit | fdf162c46e3bea390fdf292eb414a1e24e339f7e (patch) | |
tree | 28eaa1616e93fef37027f5a2680e665677ff2389 /gcc/ada | |
parent | 8d6d2396f8f22f949f7db31c9a944a5ff3538d03 (diff) | |
download | gcc-fdf162c46e3bea390fdf292eb414a1e24e339f7e.tar.gz |
Minor reformatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151751 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada')
-rw-r--r-- | gcc/ada/switch-c.adb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ada/switch-c.adb b/gcc/ada/switch-c.adb index 1ecae61a013..9ccba42377d 100644 --- a/gcc/ada/switch-c.adb +++ b/gcc/ada/switch-c.adb @@ -310,6 +310,7 @@ package body Switch.C is case Switch_Chars (Ptr) is -- -gnatea (initial delimiter of explicit switches) + -- All switches that come before -gnatea have been added by -- the GCC driver and are not stored in the ALI file. -- See also -gnatez below. @@ -370,6 +371,7 @@ package body Switch.C is return; -- -gnateC switch (CodePeer SCIL generation) + -- Not enabled for now, keep it for later??? -- use -gnatd.I only for now @@ -468,9 +470,10 @@ package body Switch.C is Ptr := Max + 1; -- -gnatez (final delimiter of explicit switches) + -- All switches that come after -gnatez have been added by - -- the GCC driver and are not stored in the ALI file. - -- See also -gnatea above. + -- the GCC driver and are not stored in the ALI file. See + -- also -gnatea above. when 'z' => Store_Switch := False; @@ -478,6 +481,7 @@ package body Switch.C is Ptr := Ptr + 1; -- -gnateS (generate SCO information) + -- Include Source Coverage Obligation information in ALI -- files for the benefit of source coverage analysis tools -- (xcov). |