MSP430: fix error message.

PR target/104797

gcc/ChangeLog:

	* config/msp430/msp430.cc (msp430_expand_delay_cycles): Remove
	parenthesis from built-in name.
This commit is contained in:
Martin Liska 2022-03-07 11:41:52 +01:00
parent fcc48d2ed6
commit 40c1d4a07e

View File

@ -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;
}