Commit faa2075e by Richard Kenner

Define NO_FUNCTION_CSE and CAN_DEBUG_WITHOUT_FP; delete

OVERRIDE_OPTIONS.

From-SVN: r6345
parent a432f20d
...@@ -50,16 +50,14 @@ int target_flags; ...@@ -50,16 +50,14 @@ int target_flags;
{"relax",1024}, \ {"relax",1024}, \
{ "", TARGET_DEFAULT}} { "", TARGET_DEFAULT}}
#define OPTIMIZATION_OPTIONS(OPTIMIZE) \ /* Show we can debug even without a frame pointer. */
{ \ #define CAN_DEBUG_WITHOUT_FP
obey_regdecls = 0; \
flag_omit_frame_pointer = (OPTIMIZE > 1); \ /* Define this if addresses of constant functions
} shouldn't be put through pseudo regs where they can be cse'd.
Desirable on machines where ordinary constants are expensive
#define OVERRIDE_OPTIONS \ but a CALL with constant address is cheap. */
{ \ #define NO_FUNCTION_CSE
flag_no_function_cse = 1; \
}
#define TARGET_INT32 (target_flags & 8) #define TARGET_INT32 (target_flags & 8)
#define TARGET_LONG16 (target_flags & 16) #define TARGET_LONG16 (target_flags & 16)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment