aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorSandra Loosemore <sandra@codesourcery.com>2007-07-31 07:15:09 -0400
committerSandra Loosemore <sandra@gcc.gnu.org>2007-07-31 07:15:09 -0400
commit221e1c3fde889fb3e87a879a04c7734ab2d2a0f3 (patch)
tree441ce84773f81b68867ae6867a292abad7570fab /gcc
parente0ab232eb485a98d0e9e9dd970385d41daa9e3c3 (diff)
downloadgcc-221e1c3fde889fb3e87a879a04c7734ab2d2a0f3.zip
gcc-221e1c3fde889fb3e87a879a04c7734ab2d2a0f3.tar.gz
gcc-221e1c3fde889fb3e87a879a04c7734ab2d2a0f3.tar.bz2
mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test.
2007-07-31 Sandra Loosemore <sandra@codesourcery.com> gcc/ * config/mips/mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test. From-SVN: r127086
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/mips/mips.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2273fbc..8323fae 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 17a7376..181f03a 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. */