vax.h (TARGET_SWITCHES): Provide descriptions.

2000-06-25  John David Anglin  <dave.anglin@nrc.ca>

        * config/vax/vax.h (TARGET_SWITCHES): Provide descriptions.

From-SVN: r34691
This commit is contained in:
John David Anglin 2000-06-24 23:52:22 +00:00 committed by Philipp Thomas
parent ee95744f31
commit 865e0471d9
2 changed files with 13 additions and 9 deletions

View File

@ -1,3 +1,7 @@
2000-06-25 John David Anglin <dave.anglin@nrc.ca>
* config/vax/vax.h (TARGET_SWITCHES): Provide descriptions.
2000-06-25 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
* mklibgcc.in: Prefer LIB1ASMFUNCS over LIB2FUNCS when generating

View File

@ -66,15 +66,15 @@ extern int target_flags;
where VALUE is the bits to set or minus the bits to clear.
An empty string NAME is used to identify the default VALUE. */
#define TARGET_SWITCHES \
{ {"unix", 1}, \
{"gnu", -1}, \
{"vaxc-alignment", 2}, \
{"g", 4}, \
{"g-float", 4}, \
{"d", -4}, \
{"d-float", -4}, \
{ "", TARGET_DEFAULT}}
#define TARGET_SWITCHES \
{ {"unix", 1, "Generate code for UNIX assembler"}, \
{"gnu", -1, "Generate code for GNU assembler (gas)"}, \
{"vaxc-alignment", 2, "Use VAXC structure conventions"}, \
{"g", 4, "Generate GFLOAT double precision code"}, \
{"g-float", 4, "Generate GFLOAT double precision code"}, \
{"d", -4, "Generate DFLOAT double precision code"}, \
{"d-float", -4, "Generate DFLOAT double precision code"}, \
{ "", TARGET_DEFAULT, 0}}
/* Default target_flags if no switches specified. */