mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
Changed format of help output
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
Fri Jul 10 16:00:04 1998 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
* config/tc-v850.c (md_show_usage): Changed format to match that
|
||||||
|
of gcc, ld, etc.
|
||||||
|
|
||||||
|
* as.c (show_usage): Changed format to match that of gcc, ld, etc.
|
||||||
|
|
||||||
Thu Jul 9 12:09:57 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
Thu Jul 9 12:09:57 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
||||||
|
|
||||||
* config/tc-m68k.c (tc_m68k_fix_adjustable): Don't adjust vtable
|
* config/tc-m68k.c (tc_m68k_fix_adjustable): Don't adjust vtable
|
||||||
|
@ -334,6 +334,9 @@ v850_comm (area)
|
|||||||
int align;
|
int align;
|
||||||
flagword applicable;
|
flagword applicable;
|
||||||
|
|
||||||
|
old_sec = now_seg;
|
||||||
|
old_subsec = now_subseg;
|
||||||
|
|
||||||
applicable = bfd_applicable_section_flags (stdoutput);
|
applicable = bfd_applicable_section_flags (stdoutput);
|
||||||
|
|
||||||
applicable &= SEC_ALLOC;
|
applicable &= SEC_ALLOC;
|
||||||
@ -374,10 +377,6 @@ v850_comm (area)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* allocate_bss: */
|
|
||||||
old_sec = now_seg;
|
|
||||||
old_subsec = now_subseg;
|
|
||||||
|
|
||||||
if (temp)
|
if (temp)
|
||||||
{
|
{
|
||||||
/* convert to a power of 2 alignment */
|
/* convert to a power of 2 alignment */
|
||||||
@ -1208,14 +1207,14 @@ void
|
|||||||
md_show_usage (stream)
|
md_show_usage (stream)
|
||||||
FILE * stream;
|
FILE * stream;
|
||||||
{
|
{
|
||||||
fprintf (stream, _("V850 options:\n"));
|
fprintf (stream, _(" V850 options:\n"));
|
||||||
fprintf (stream, _("\t-mwarn-signed-overflow Warn if signed immediate values overflow\n"));
|
fprintf (stream, _(" -mwarn-signed-overflow Warn if signed immediate values overflow\n"));
|
||||||
fprintf (stream, _("\t-mwarn-unsigned-overflow Warn if unsigned immediate values overflow\n"));
|
fprintf (stream, _(" -mwarn-unsigned-overflow Warn if unsigned immediate values overflow\n"));
|
||||||
fprintf (stream, _("\t-mv850 The code is targeted at the v850\n"));
|
fprintf (stream, _(" -mv850 The code is targeted at the v850\n"));
|
||||||
/* start-sanitize-v850e */
|
/* start-sanitize-v850e */
|
||||||
fprintf (stream, _("\t-mv850e The code is targeted at the v850e\n"));
|
fprintf (stream, _(" -mv850e The code is targeted at the v850e\n"));
|
||||||
fprintf (stream, _("\t-mv850ea The code is targeted at the v850ea\n"));
|
fprintf (stream, _(" -mv850ea The code is targeted at the v850ea\n"));
|
||||||
fprintf (stream, _("\t-mv850any The code is generic, despite any processor specific instructions\n"));
|
fprintf (stream, _(" -mv850any The code is generic, despite any processor specific instructions\n"));
|
||||||
/* end-sanitize-v850e */
|
/* end-sanitize-v850e */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user