diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-07-21 14:27:53 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-07-21 14:27:53 -0700 |
commit | 0e91606a8b28366de672ae1557a861c543518324 (patch) | |
tree | e6fbb75baede7ca719ade75265b3d7bc923d28fc | |
parent | 4fb420c2928b328c3b34532acf6e006da1058961 (diff) | |
download | gcc-0e91606a8b28366de672ae1557a861c543518324.zip gcc-0e91606a8b28366de672ae1557a861c543518324.tar.gz gcc-0e91606a8b28366de672ae1557a861c543518324.tar.bz2 |
(TARGET_SWITCHES): Recognize -m68851, -mno-68851,
-m68302, -mno-68302, -m68332, -mno-68332.
From-SVN: r4958
-rw-r--r-- | gcc/config/m68k/m68k.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/m68k/m68k.h b/gcc/config/m68k/m68k.h index 3650d3b..215d41b 100644 --- a/gcc/config/m68k/m68k.h +++ b/gcc/config/m68k/m68k.h @@ -121,6 +121,12 @@ extern int target_flags; { "68030", -01400}, \ { "68030", 5}, \ { "68040", 01007}, \ + { "68851", 0}, /* Affects *_SPEC and/or GAS. */ \ + { "no-68851", 0}, /* Affects *_SPEC and/or GAS. */ \ + { "68302", 0}, /* Affects *_SPEC and/or GAS. */ \ + { "no-68302", 0}, /* Affects *_SPEC and/or GAS. */ \ + { "68332", 0}, /* Affects *_SPEC and/or GAS. */ \ + { "no-68332", 0}, /* Affects *_SPEC and/or GAS. */ \ SUBTARGET_SWITCHES \ { "", TARGET_DEFAULT}} /* TARGET_DEFAULT is defined in sun*.h and isi.h, etc. */ |