diff options
author | Eric Christopher <echristo@redhat.com> | 2005-03-15 05:53:10 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2005-03-15 05:53:10 +0000 |
commit | 85bfab3691772fe74e9bec7917a28d2d29b1d3c9 (patch) | |
tree | be7d5f8f9a8206f41c186cf321af238887ffc160 | |
parent | b87a02062059c9bedf31471c1e080daf49f2ae3e (diff) | |
download | gcc-85bfab3691772fe74e9bec7917a28d2d29b1d3c9.zip gcc-85bfab3691772fe74e9bec7917a28d2d29b1d3c9.tar.gz gcc-85bfab3691772fe74e9bec7917a28d2d29b1d3c9.tar.bz2 |
mips.h (DWARF_CIE_DATA_ALIGNMENT): Change for STACK_GROWS_DOWNWARD.
2005-03-14 Eric Christopher <echristo@redhat.com>
* config/mips/mips.h (DWARF_CIE_DATA_ALIGNMENT): Change for
STACK_GROWS_DOWNWARD.
From-SVN: r96474
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8a3f9c6..276be04 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-03-14 Eric Christopher <echristo@redhat.com> + + * config/mips/mips.h (DWARF_CIE_DATA_ALIGNMENT): Change for + STACK_GROWS_DOWNWARD. + 2005-03-14 Roger Sayle <roger@eyesopen.com> * real.h (struct real_format): Split the signbit field into two diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 8deb448..45ff0c0 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -935,7 +935,7 @@ extern const struct mips_cpu_info *mips_tune_info; /* Offsets recorded in opcodes are a multiple of this alignment factor. The default for this in 64-bit mode is 8, which causes problems with SFmode register saves. */ -#define DWARF_CIE_DATA_ALIGNMENT 4 +#define DWARF_CIE_DATA_ALIGNMENT -4 /* Correct the offset of automatic variables and arguments. Note that the MIPS debug format wants all automatic variables and arguments |