From: Benno Schulenberg Date: Fri, 16 May 2014 19:52:17 +0000 (+0000) Subject: arc.c (arc_init): Fix typo in error message. X-Git-Tag: releases/gcc-5.1.0~7523 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2236746bbb9b2f2e71db8200f363b7649748e981;p=thirdparty%2Fgcc.git arc.c (arc_init): Fix typo in error message. 2014-02-07 Benno Schulenberg * config/arc/arc.c (arc_init): Fix typo in error message. * config/i386/i386.c (ix86_expand_builtin): Likewise. (split_stack_prologue_scratch_regno): Likewise. * fortran/check.c (gfc_check_fn_rc2008): Remove duplicate word from error message. From-SVN: r210526 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0629ec8b9395..1db65a64410b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2014-02-07 Benno Schulenberg + + * config/arc/arc.c (arc_init): Fix typo in error message. + * config/i386/i386.c (ix86_expand_builtin): Likewise. + (split_stack_prologue_scratch_regno): Likewise. + * fortran/check.c (gfc_check_fn_rc2008): Remove duplicate + word from error message. + 2014-05-16 Zhouyi Zhou * ira-costs.c: Fix typo in comment. diff --git a/gcc/config/arc/arc.c b/gcc/config/arc/arc.c index 113395bd5de0..8c170e0f391f 100644 --- a/gcc/config/arc/arc.c +++ b/gcc/config/arc/arc.c @@ -750,7 +750,7 @@ arc_init (void) error ("-mmul32x16 supported only for ARC600 or ARC601"); if (!TARGET_DPFP && TARGET_DPFP_DISABLE_LRSR) - error ("-mno-dpfp-lrsr suppforted only with -mdpfp"); + error ("-mno-dpfp-lrsr supported only with -mdpfp"); /* FPX-1. No fast and compact together. */ if ((TARGET_DPFP_FAST_SET && TARGET_DPFP_COMPACT_SET) diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index b78f3c0e91ae..6724b84d02f0 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -11844,7 +11844,7 @@ split_stack_prologue_scratch_regno (void) if (regparm >= 2) { sorry ("-fsplit-stack does not support 2 register " - " parameters for a nested function"); + "parameters for a nested function"); return INVALID_REGNUM; } return DX_REG; diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c index 90ba0c921e5f..f58452dfdc43 100644 --- a/gcc/fortran/check.c +++ b/gcc/fortran/check.c @@ -1821,7 +1821,7 @@ gfc_check_fn_rc2008 (gfc_expr *a) return false; if (a->ts.type == BT_COMPLEX - && !gfc_notify_std (GFC_STD_F2008, "COMPLEX argument '%s' " + && !gfc_notify_std (GFC_STD_F2008, "COMPLEX '%s' " "argument of '%s' intrinsic at %L", gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic, &a->where))