From: Martin Liska Date: Mon, 7 Mar 2022 10:41:52 +0000 (+0100) Subject: MSP430: fix error message. X-Git-Tag: basepoints/gcc-13~797 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40c1d4a07e5798c01e4364336c9617550744861d;p=thirdparty%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 eb219fd5e71b..7a378ceac567 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; }