From 40c1d4a07e5798c01e4364336c9617550744861d Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Mon, 7 Mar 2022 11:41:52 +0100 Subject: [PATCH] MSP430: fix error message. PR target/104797 gcc/ChangeLog: * config/msp430/msp430.cc (msp430_expand_delay_cycles): Remove parenthesis from built-in name. --- gcc/config/msp430/msp430.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.7.4