diff options
author | Clinton Popetz <cpopetz@cygnus.com> | 2000-01-14 21:38:23 +0000 |
---|---|---|
committer | Clinton Popetz <cpopetz@gcc.gnu.org> | 2000-01-14 16:38:23 -0500 |
commit | ea64cab43153e96beea3d176c3fe662dbbc37590 (patch) | |
tree | c0efc8a123f7d0ad2787c4768ba29cf00812c7b4 /gcc | |
parent | f5c8ac96dc90c77efcc6edf6b89de6d9bfc0f775 (diff) | |
download | gcc-ea64cab43153e96beea3d176c3fe662dbbc37590.zip gcc-ea64cab43153e96beea3d176c3fe662dbbc37590.tar.gz gcc-ea64cab43153e96beea3d176c3fe662dbbc37590.tar.bz2 |
mips.c (override_options): Don't turn on extra alignment for mips16.
* config/mips/mips.c (override_options): Don't turn on extra
alignment for mips16.
From-SVN: r31423
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 76fdf3f..fae6e7b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2000-01-14 Clinton Popetz <cpopetz@cygnus.com> + * config/mips/mips.c (override_options): Don't turn on extra + alignment for mips16. + +2000-01-14 Clinton Popetz <cpopetz@cygnus.com> + * config/mips/mips.c (mips_va_arg): Fix fprv for the 32 bit eabi, and make sure queued POSTINCREMENT rtl is emitted at the right point. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 43601a7..c66c13e 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -4777,7 +4777,7 @@ override_options () gpr_mode = TARGET_64BIT ? DImode : SImode; /* Provide default values for align_* for 64-bit targets. */ - if (TARGET_64BIT) + if (TARGET_64BIT && !TARGET_MIPS16) { if (align_loops == 0) align_loops = 8; |