diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-03-18 21:55:47 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-03-18 14:55:47 -0700 |
commit | 3f1558136ad68d85dbad6a519e7e844c2db5143d (patch) | |
tree | 449fc0cdeaf97e7ca55f652b8e20bf2741556b5a /gcc | |
parent | c459c26f9fecc6c58b22b76cf1f68849ed7023a3 (diff) | |
download | gcc-3f1558136ad68d85dbad6a519e7e844c2db5143d.zip gcc-3f1558136ad68d85dbad6a519e7e844c2db5143d.tar.gz gcc-3f1558136ad68d85dbad6a519e7e844c2db5143d.tar.bz2 |
* fx80.h (TARGET_SWITCHES): Add documentation.
From-SVN: r25849
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 1 | ||||
-rw-r--r-- | gcc/config/fx80/fx80.h | 18 |
2 files changed, 10 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index efc1d2e..cc2c6f9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,6 @@ Thu Mar 18 22:28:53 1999 Jeffrey A Law (law@cygnus.com) + * fx80.h (TARGET_SWITCHES): Add documentation. * elxsi.h (TARGET_SWITCHES): Add documentation. * clipper.h (TARGET_SWITCHES): Add documentation. * 1750a.h (TARGET_SWITCHES): Add documentation. diff --git a/gcc/config/fx80/fx80.h b/gcc/config/fx80/fx80.h index 651d13d0..98307e9 100644 --- a/gcc/config/fx80/fx80.h +++ b/gcc/config/fx80/fx80.h @@ -109,15 +109,15 @@ extern int target_flags; An empty string NAME is used to identify the default VALUE. */ #define TARGET_SWITCHES \ - { { "68020", 5}, \ - { "c68020", 5}, \ - { "bitfield", 4}, \ - { "68000", -7}, \ - { "c68000", -7}, \ - { "soft-float", -2}, \ - { "nobitfield", -4}, \ - { "short", 040}, \ - { "noshort", -040}, \ + { { "68020", 5, "Generate code for a mc68020"}, \ + { "c68020", 5, "Generate code for a mc68020"}, \ + { "bitfield", 4, "Use bitfield instructions"}, \ + { "68000", -7, "Generate code for a mc68000"}, \ + { "c68000", -7, "Generate code for a mc68000"}, \ + { "soft-float", -2, "Generate software FP code"}, \ + { "nobitfield", -4, "Do not generate bitfield insns"}, \ + { "short", 040, "Use 16bit integers"}, \ + { "noshort", -040, "Use 32bit integers"}, \ { "", TARGET_DEFAULT}} /* target machine storage layout */ |