diff options
Diffstat (limited to 'gcc/config/nds32/nds32-predicates.c')
-rw-r--r-- | gcc/config/nds32/nds32-predicates.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/nds32/nds32-predicates.c b/gcc/config/nds32/nds32-predicates.c index cc8ae55..b6cff20 100644 --- a/gcc/config/nds32/nds32-predicates.c +++ b/gcc/config/nds32/nds32-predicates.c @@ -335,7 +335,7 @@ nds32_can_use_bclr_p (int ival) one_bit_count = popcount_hwi ((unsigned HOST_WIDE_INT) (~ival)); /* 'bclr' is a performance extension instruction. */ - return (TARGET_PERF_EXT && (one_bit_count == 1)); + return (TARGET_EXT_PERF && (one_bit_count == 1)); } /* Function to check if 'bset' instruction can be used with IVAL. */ @@ -350,7 +350,7 @@ nds32_can_use_bset_p (int ival) one_bit_count = popcount_hwi ((unsigned HOST_WIDE_INT) (ival)); /* 'bset' is a performance extension instruction. */ - return (TARGET_PERF_EXT && (one_bit_count == 1)); + return (TARGET_EXT_PERF && (one_bit_count == 1)); } /* Function to check if 'btgl' instruction can be used with IVAL. */ @@ -365,7 +365,7 @@ nds32_can_use_btgl_p (int ival) one_bit_count = popcount_hwi ((unsigned HOST_WIDE_INT) (ival)); /* 'btgl' is a performance extension instruction. */ - return (TARGET_PERF_EXT && (one_bit_count == 1)); + return (TARGET_EXT_PERF && (one_bit_count == 1)); } /* Function to check if 'bitci' instruction can be used with IVAL. */ |