MSP430: fix error message.
authorMartin Liska <mliska@suse.cz>
Mon, 7 Mar 2022 10:41:52 +0000 (11:41 +0100)
committerMartin Liska <mliska@suse.cz>
Mon, 7 Mar 2022 10:41:52 +0000 (11:41 +0100)
PR target/104797

gcc/ChangeLog:

* config/msp430/msp430.cc (msp430_expand_delay_cycles): Remove
parenthesis from built-in name.

gcc/config/msp430/msp430.cc

index eb219fd..7a378ce 100644 (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;
     }