diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-31 06:55:57 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-31 06:55:57 -0500 |
commit | 7be1e5236cb5fedfe05c40f3e69651b37e940582 (patch) | |
tree | 59031a0cd4da1b28ad5099aeef3216a4a562d9a6 /gcc | |
parent | 4f074454bb3b48ca84cac7d467858d54496e1a93 (diff) | |
download | gcc-7be1e5236cb5fedfe05c40f3e69651b37e940582.zip gcc-7be1e5236cb5fedfe05c40f3e69651b37e940582.tar.gz gcc-7be1e5236cb5fedfe05c40f3e69651b37e940582.tar.bz2 |
(CAN_DEBUG_WITHOUT_FP): Define.
(OPTIMIZATION_LEVELS): Just set MASK_GPOPT.
From-SVN: r6349
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 35a56b8..e55c7c9 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -491,14 +491,12 @@ while (0) #define OPTIMIZATION_OPTIONS(LEVEL) \ { \ if (LEVEL) \ - { \ - flag_omit_frame_pointer = TRUE; \ - flag_schedule_insns_after_reload = TRUE; \ - target_flags |= MASK_GPOPT; \ - } \ + target_flags |= MASK_GPOPT; \ } - +/* Show we can debug even without a frame pointer. */ +#define CAN_DEBUG_WITHOUT_FP + /* Complain about missing specs and predefines that should be defined in each of the target tm files to override the defaults. This is mostly a place- holder until I can get each of the files updated [mm]. */ |