diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-12-31 11:55:27 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-12-31 11:55:27 +0000 |
commit | 6627a13185d2b53d0db0c3407696b5154dbea691 (patch) | |
tree | 26fdeec363667afd7fe1c8dfca60d9d636dade46 /gcc/config/clipper | |
parent | 7dfdfbcf5e6f8be0a9bc8d8bc250349b2a6ec261 (diff) | |
download | ppe42-gcc-6627a13185d2b53d0db0c3407696b5154dbea691.tar.gz ppe42-gcc-6627a13185d2b53d0db0c3407696b5154dbea691.zip |
Define CAN_DEBUG_WITHOUT_FP; delete OPTIMIZATION_OPTIONS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6348 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/clipper')
-rw-r--r-- | gcc/config/clipper/clipper.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gcc/config/clipper/clipper.h b/gcc/config/clipper/clipper.h index b24c3d4fb78..ddb6ed517c4 100644 --- a/gcc/config/clipper/clipper.h +++ b/gcc/config/clipper/clipper.h @@ -52,17 +52,8 @@ extern int target_flags; #define TARGET_DEFAULT TARGET_C300 #endif -/* Omit frame pointer at -O2. Inline functions at -O3. */ - -#define OPTIMIZATION_OPTIONS(LEVEL) \ -{ \ - if ((LEVEL) >= 2) \ - { \ - flag_omit_frame_pointer = 1; \ - } \ - if ((LEVEL) >= 3) \ - flag_inline_functions = 1; \ -} +/* Show that we can debug generated code without a frame pointer. */ +#define CAN_DEBUG_WITHOUT_FP /* Target machine storage layout */ |