diff options
author | Nick Clifton <nickc@cygnus.com> | 2000-08-07 11:35:06 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2000-08-07 11:35:06 +0000 |
commit | 8e04dd30d1e4318628cb109ac7a2c601c01c73d1 (patch) | |
tree | 01a22f5e1c40ea73bb4001eecf0a2548cd2be3ad /gcc | |
parent | f3d6a3cb21171c3c90cdec4fe0abd168acdd7bbd (diff) | |
download | gcc-8e04dd30d1e4318628cb109ac7a2c601c01c73d1.zip gcc-8e04dd30d1e4318628cb109ac7a2c601c01c73d1.tar.gz gcc-8e04dd30d1e4318628cb109ac7a2c601c01c73d1.tar.bz2 |
* mn10300.h (TARGET_SWITCHES): Document `-mam33'.
From-SVN: r35552
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mn10300/mn10300.h | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9bf7e3c..53a66e1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-08-07 Nick Clifton <nickc@cygnus.com> + + * mn10300.h (TARGET_SWITCHES): Document `-mam33'. + 2000-08-07 Graham Stott <grahams@cygnus.co.uk> * mn10300.md: Use nonimmediate_operand instead of general_operand diff --git a/gcc/config/mn10300/mn10300.h b/gcc/config/mn10300/mn10300.h index 78c5902..c3912af 100644 --- a/gcc/config/mn10300/mn10300.h +++ b/gcc/config/mn10300/mn10300.h @@ -55,9 +55,9 @@ extern int target_flags; #define TARGET_SWITCHES \ {{ "mult-bug", 0x1, N_("Work around hardware multiply bug")}, \ { "no-mult-bug", -0x1, N_("Do not work around hardware multiply bug")},\ - { "am33", 0x2, 0}, \ - { "am33", -(0x1), 0},\ - { "no-am33", -0x2, 0}, \ + { "am33", 0x2, N_("Target the AM33 processor")}, \ + { "am33", -(0x1), ""},\ + { "no-am33", -0x2, ""}, \ { "", TARGET_DEFAULT, NULL}} #ifndef TARGET_DEFAULT |