aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2022-03-07 11:41:52 +0100
committerMartin Liska <mliska@suse.cz>2022-03-07 11:41:52 +0100
commit40c1d4a07e5798c01e4364336c9617550744861d (patch)
tree2a787d3f0d8349036c9bea6f93f5eba79ac0dafa /gcc/config
parentfcc48d2ed6b621f7d0c141afed81a4922c056039 (diff)
downloadgcc-40c1d4a07e5798c01e4364336c9617550744861d.zip
gcc-40c1d4a07e5798c01e4364336c9617550744861d.tar.gz
gcc-40c1d4a07e5798c01e4364336c9617550744861d.tar.bz2
MSP430: fix error message.
PR target/104797 gcc/ChangeLog: * config/msp430/msp430.cc (msp430_expand_delay_cycles): Remove parenthesis from built-in name.
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/msp430/msp430.cc2
1 files changed, 1 insertions, 1 deletions
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;
}