From: Sandra Loosemore Date: Tue, 31 Jul 2007 11:15:09 +0000 (-0400) Subject: mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=221e1c3fde889fb3e87a879a04c7734ab2d2a0f3;p=gcc.git mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test. 2007-07-31 Sandra Loosemore gcc/ * config/mips/mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test. From-SVN: r127086 --- 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 + + * config/mips/mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test. + 2007-07-31 Revital Eres * 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. */