aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/msp430
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2017-03-11 01:43:48 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2017-03-11 01:43:48 +0000
commit90aaff2cdef2429929ea01fbe1f873bc457ad5a1 (patch)
tree84f56b24d40ec62fc88d6efabff1565b1bdd42c6 /gcc/config/msp430
parentfb241da254241b458b8065c7ab1c5a76fb137964 (diff)
downloadgcc-90aaff2cdef2429929ea01fbe1f873bc457ad5a1.zip
gcc-90aaff2cdef2429929ea01fbe1f873bc457ad5a1.tar.gz
gcc-90aaff2cdef2429929ea01fbe1f873bc457ad5a1.tar.bz2
Remove trailing period from various diagnostic messages (PR translation/79923)
gcc/ChangeLog: PR translation/79923 * auto-profile.c (get_combined_location): Convert leading character of diagnostics to lower case and remove trailing period. (read_profile): Likewise for various diagnostics. * config/arm/arm.c (arm_option_override): Remove trailing period from various diagnostics. * config/msp430/msp430.c (msp430_expand_delay_cycles): Likewise. (msp430_expand_delay_cycles): Likewise. From-SVN: r246067
Diffstat (limited to 'gcc/config/msp430')
-rw-r--r--gcc/config/msp430/msp430.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/msp430/msp430.c b/gcc/config/msp430/msp430.c
index 15d9678..710a97b 100644
--- a/gcc/config/msp430/msp430.c
+++ b/gcc/config/msp430/msp430.c
@@ -2501,7 +2501,7 @@ msp430_expand_delay_cycles (rtx arg)
{
if (c < 0)
{
- error ("__delay_cycles only takes non-negative cycle counts.");
+ error ("__delay_cycles only takes non-negative cycle counts");
return NULL_RTX;
}
}
@@ -2521,7 +2521,7 @@ msp430_expand_delay_cycles (rtx arg)
c %= 4;
if ((unsigned long long) i > 0xffffffffULL)
{
- error ("__delay_cycles is limited to 32-bit loop counts.");
+ error ("__delay_cycles is limited to 32-bit loop counts");
return NULL_RTX;
}
}