aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJohn David Anglin <dave.anglin@nrc.ca>2000-06-24 23:52:22 +0000
committerPhilipp Thomas <pthomas@gcc.gnu.org>2000-06-24 23:52:22 +0000
commit865e0471d91ee3fcb515a365ecf63a6316a9b3c3 (patch)
tree5901a5a7e451f4368ec36370fe718c56016e1519 /gcc
parentee95744f315cfe57a7efc156fe1c91423dfe1f7f (diff)
downloadgcc-865e0471d91ee3fcb515a365ecf63a6316a9b3c3.zip
gcc-865e0471d91ee3fcb515a365ecf63a6316a9b3c3.tar.gz
gcc-865e0471d91ee3fcb515a365ecf63a6316a9b3c3.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/vax/vax.h18
2 files changed, 13 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7487454..a667b8d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h
index 8dddaf3..9901ba4 100644
--- a/gcc/config/vax/vax.h
+++ b/gcc/config/vax/vax.h
@@ -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. */