diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1993-03-20 23:54:00 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1993-03-20 23:54:00 +0000 |
commit | 404f986e04ee55d0d944c85f02e83ea5a2519a19 (patch) | |
tree | 16190561807f7da2d92f87ab9ea693ff5fe7ca58 /gcc | |
parent | a4e4b55c0cbf8638421654c5a5ef7515ceef49b5 (diff) | |
download | gcc-404f986e04ee55d0d944c85f02e83ea5a2519a19.zip gcc-404f986e04ee55d0d944c85f02e83ea5a2519a19.tar.gz gcc-404f986e04ee55d0d944c85f02e83ea5a2519a19.tar.bz2 |
Look at TARGET_CPU_DEFAULT to enable the use of gas.
From-SVN: r3806
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index ad2acd6..d56a8bf 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -364,7 +364,7 @@ extern char *mktemp (); {"debugh", MASK_DEBUG_H}, \ {"debugi", MASK_DEBUG_I}, \ {"debugj", MASK_DEBUG_J}, \ - {"", TARGET_DEFAULT} \ + {"", TARGET_DEFAULT | TARGET_CPU_DEFAULT} \ } /* Default target_flags if no switches are specified */ @@ -373,6 +373,10 @@ extern char *mktemp (); #define TARGET_DEFAULT 0 #endif +#ifndef TARGET_CPU_DEFAULT +#define TARGET_CPU_DEFAULT 0 +#endif + /* This macro is similar to `TARGET_SWITCHES' but defines names of command options that have values. Its definition is an initializer with a subgrouping for each command option. |