diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1997-05-01 11:41:48 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1997-05-01 11:41:48 -0700 |
commit | 33b5e50b6ab2484e2603871cf04398ac1ccaed39 (patch) | |
tree | c7e3cd0726f0beb85cc0445035f79841de2ecb2b /gcc | |
parent | 8c61b6c1a82446db9359c4b9b2789f6dfb0153aa (diff) | |
download | gcc-33b5e50b6ab2484e2603871cf04398ac1ccaed39.zip gcc-33b5e50b6ab2484e2603871cf04398ac1ccaed39.tar.gz gcc-33b5e50b6ab2484e2603871cf04398ac1ccaed39.tar.bz2 |
(TARGET_FILE_SWITCHING): Define.
(NO_DBX_FUNCTION_END): Define.
From-SVN: r14004
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 1b6d411..3ae6e9a 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -364,6 +364,16 @@ extern void text_section (); #define TARGET_4300_MUL_FIX (target_flags & MASK_4300_MUL_FIX) +/* This is true if we must enable the assembly language file switching + code. */ + +#define TARGET_FILE_SWITCHING (TARGET_GP_OPT && ! TARGET_GAS) + +/* We must disable the function end stabs when doing the file switching trick, + because the Lscope stabs end up in the wrong place, making it impossible + to debug the resulting code. */ +#define NO_DBX_FUNCTION_END TARGET_FILE_SWITCHING + /* Macro to define tables used to set the flags. This is a list in braces of pairs in braces, each pair being { "NAME", VALUE } |