summaryrefslogtreecommitdiffstats
path: root/gcc
diff options
context:
space:
mode:
authorneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-13 20:31:33 +0000
committerneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-13 20:31:33 +0000
commitd3c0aaaada01a1bb0419a1547c0588d7420c55d8 (patch)
tree780d5734d874f34145d15a8426bd3bb5260c2984 /gcc
parent8b27c7276a452923a47ce74da1843006f10efcb0 (diff)
downloadppe42-gcc-d3c0aaaada01a1bb0419a1547c0588d7420c55d8.tar.gz
ppe42-gcc-d3c0aaaada01a1bb0419a1547c0588d7420c55d8.zip
PR other/11123
* toplev.c: Don't cut off option names. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69303 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/toplev.c12
2 files changed, 11 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 59dad2c76b6..bcb840c4448 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
+
+ PR other/11123
+ * toplev.c: Don't cut off option names.
+
2003-07-13 Andreas Jaeger <aj@suse.de>
* c-decl.c (link_hash_hash): Avoid warning about casting pointer
diff --git a/gcc/toplev.c b/gcc/toplev.c
index da18f928854..adb4fffe042 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -3818,7 +3818,7 @@ display_help (void)
undoc = 1;
if (extra_warnings)
- printf (_(" %-23.23s [undocumented]\n"), option);
+ printf (_(" %-23s [undocumented]\n"), option);
}
else if (*description == 0)
continue;
@@ -3835,7 +3835,7 @@ display_help (void)
lang = description;
}
else
- printf (" %-23.23s %s\n", option, _(description));
+ printf (" %-23s %s\n", option, _(description));
}
}
@@ -3883,10 +3883,10 @@ display_target_options (void)
undoc = 1;
if (extra_warnings)
- printf (_(" -m%-23.23s [undocumented]\n"), option);
+ printf (_(" -m%-23s [undocumented]\n"), option);
}
else if (*description != 0)
- doc += printf (" -m%-23.23s %s\n", option, _(description));
+ doc += printf (" -m%-23s %s\n", option, _(description));
}
#ifdef TARGET_OPTIONS
@@ -3902,10 +3902,10 @@ display_target_options (void)
undoc = 1;
if (extra_warnings)
- printf (_(" -m%-23.23s [undocumented]\n"), option);
+ printf (_(" -m%-23s [undocumented]\n"), option);
}
else if (*description != 0)
- doc += printf (" -m%-23.23s %s\n", option, _(description));
+ doc += printf (" -m%-23s %s\n", option, _(description));
}
#endif
if (undoc)
OpenPOWER on IntegriCloud