diff options
author | Chris Demetriou <cgd@netbsd.org> | 2000-04-05 15:52:17 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-04-05 09:52:17 -0600 |
commit | 1fbdccae0d83d6005716ae9f4ea5bdb0e32f9fac (patch) | |
tree | 1bf3251b9acc8ac35e5deafe0543349830c5617c /gcc | |
parent | 5b99e44959e5a5ad9c7d1c3e8c9829fa0b0d1b8d (diff) | |
download | gcc-1fbdccae0d83d6005716ae9f4ea5bdb0e32f9fac.zip gcc-1fbdccae0d83d6005716ae9f4ea5bdb0e32f9fac.tar.gz gcc-1fbdccae0d83d6005716ae9f4ea5bdb0e32f9fac.tar.bz2 |
mips.h (MASK_DEBUG_A, [...]): Zero the remaining non-zero debugging masks.
* mips.h (MASK_DEBUG_A, MASK_DEBUG_B, MASK_DEBUG_C): Zero the
remaining non-zero debugging masks.
From-SVN: r32933
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.h | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8383f1c..8fec1aa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-05 Chris Demetriou <cgd@netbsd.org> + + * mips.h (MASK_DEBUG_A, MASK_DEBUG_B, MASK_DEBUG_C): Zero the + remaining non-zero debugging masks. + Wed Apr 5 09:44:07 2000 Jeffrey A Law (law@cygnus.com) * basic-block.h (verify_flow_info): Declare. diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index e8307e5..bc8c83e 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -217,9 +217,9 @@ extern void sbss_section PARAMS ((void)); /* Debug switches, not documented */ #define MASK_DEBUG 0 /* Eliminate version # in .s file */ -#define MASK_DEBUG_A 0x40000000 /* don't allow <label>($reg) addrs */ -#define MASK_DEBUG_B 0x20000000 /* GO_IF_LEGITIMATE_ADDRESS debug */ -#define MASK_DEBUG_C 0x10000000 /* don't expand seq, etc. */ +#define MASK_DEBUG_A 0x0 /* don't allow <label>($reg) addrs */ +#define MASK_DEBUG_B 0x0 /* GO_IF_LEGITIMATE_ADDRESS debug */ +#define MASK_DEBUG_C 0x0 /* don't expand seq, etc. */ #define MASK_DEBUG_D 0 /* don't do define_split's */ #define MASK_DEBUG_E 0 /* function_arg debug */ #define MASK_DEBUG_F 0 |