diff options
| author | sandra <sandra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-31 11:15:09 +0000 |
|---|---|---|
| committer | sandra <sandra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-31 11:15:09 +0000 |
| commit | 506e9f606d1bb09005f144fec0fec6f4c1296a40 (patch) | |
| tree | 441ce84773f81b68867ae6867a292abad7570fab /gcc | |
| parent | 47912321319c84c65a1c282fbeeeeec4e85d238b (diff) | |
| download | ppe42-gcc-506e9f606d1bb09005f144fec0fec6f4c1296a40.tar.gz ppe42-gcc-506e9f606d1bb09005f144fec0fec6f4c1296a40.zip | |
2007-07-31 Sandra Loosemore <sandra@codesourcery.com>
gcc/
* config/mips/mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127086 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/mips/mips.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2273fbc346c..8323fae31f5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-07-31 Sandra Loosemore <sandra@codesourcery.com> + + * config/mips/mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test. + 2007-07-31 Revital Eres <eres@il.ibm.com> * ddg.c (add_deps_for_def): Rename to... diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 17a7376f747..181f03a9757 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -819,7 +819,7 @@ extern const struct mips_rtx_cost_data *mips_cost; || TARGET_MIPS5500) /* ISA includes synci, jr.hb and jalr.hb. */ -#define ISA_HAS_SYNCI ISA_MIPS32R2 +#define ISA_HAS_SYNCI (ISA_MIPS32R2 && !TARGET_MIPS16) /* Add -G xx support. */ |

