From: Martin Liska Date: Mon, 7 Mar 2022 10:41:52 +0000 (+0100) Subject: MSP430: fix error message. X-Git-Tag: upstream/12.2.0~1181 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40c1d4a07e5798c01e4364336c9617550744861d;p=platform%2Fupstream%2Fgcc.git MSP430: fix error message. PR target/104797 gcc/ChangeLog: * config/msp430/msp430.cc (msp430_expand_delay_cycles): Remove parenthesis from built-in name. --- diff --git a/gcc/config/msp430/msp430.cc b/gcc/config/msp430/msp430.cc index eb219fd..7a378ce 100644 --- a/gcc/config/msp430/msp430.cc +++ b/gcc/config/msp430/msp430.cc @@ -2744,7 +2744,7 @@ msp430_expand_delay_cycles (rtx arg) if (GET_CODE (arg) != CONST_INT) { - error ("%<__delay_cycles()%> only takes constant arguments"); + error ("%<__delay_cycles%> only takes constant arguments"); return NULL_RTX; }