diff options
author | Ghjuvan Lacambre <lacambre@adacore.com> | 2021-06-21 13:32:45 +0200 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2021-09-20 12:31:28 +0000 |
commit | 5e86334302c9315a56ba419f85ad388ca0c0a940 (patch) | |
tree | e19be25b8d1f114077114e33beb0796d268a0c68 | |
parent | d41be878c91e2e72cbd8bd68f793abc2c4b70563 (diff) | |
download | gcc-5e86334302c9315a56ba419f85ad388ca0c0a940.zip gcc-5e86334302c9315a56ba419f85ad388ca0c0a940.tar.gz gcc-5e86334302c9315a56ba419f85ad388ca0c0a940.tar.bz2 |
[Ada] usage.adb: make -gnatw.c description clearer
gcc/ada/
* usage.adb (Usage): Update -gnatw.c messages.
-rw-r--r-- | gcc/ada/usage.adb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ada/usage.adb b/gcc/ada/usage.adb index c88ccec..bca3527 100644 --- a/gcc/ada/usage.adb +++ b/gcc/ada/usage.adb @@ -483,8 +483,10 @@ begin Write_Line (" .B turn off warnings for biased representation"); Write_Line (" c+ turn on warnings for constant conditional"); Write_Line (" C* turn off warnings for constant conditional"); - Write_Line (" .c+ turn on warnings for unrepped components"); - Write_Line (" .C* turn off warnings for unrepped components"); + Write_Line (" .c+ turn on warnings for components without " & + "representation clauses"); + Write_Line (" .C* turn off warnings for components without " & + "representation clauses"); Write_Line (" _c* turn on warnings for unknown " & "Compile_Time_Warning"); Write_Line (" _C turn off warnings for unknown " & |