From: Dominik Vogt Date: Fri, 29 Jan 2016 10:12:11 +0000 (+0000) Subject: PR other/69006: S/390: Fix extra newlines after diagnostics. X-Git-Tag: basepoints/gcc-7~1226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=647ffdb76f168630115caeb76c91bdcc5ff607ae;p=thirdparty%2Fgcc.git PR other/69006: S/390: Fix extra newlines after diagnostics. gcc/ChangeLog PR other/69006 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove trailing blank line from error message. From-SVN: r232972 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f1e2c29e6827..45b99e067a1d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-01-29 Dominik Vogt + + PR other/69006 + * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove + trailing blank line from error message. + 2016-01-29 Jonathan Wakely PR c++/69462 diff --git a/gcc/config/s390/s390-c.c b/gcc/config/s390/s390-c.c index 14d030d217c3..2b6e405dcbf7 100644 --- a/gcc/config/s390/s390-c.c +++ b/gcc/config/s390/s390-c.c @@ -909,7 +909,7 @@ s390_resolve_overloaded_builtin (location_t loc, } else if (num_matches > 1) { - error_at (loc, "ambiguous overload for intrinsic: %s\n", + error_at (loc, "ambiguous overload for intrinsic: %s", IDENTIFIER_POINTER (DECL_NAME (ob_fndecl))); return error_mark_node; }