The attached patch removes a blank line after an error message. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69006
Ciao Dominik ^_^ ^_^ -- Dominik Vogt IBM Germany
gcc/ChangeLog PR other/69006 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove trailing blank line from error message.
>From ae4938b344821b3f6d244ec7fc5f9703599d3d55 Mon Sep 17 00:00:00 2001 From: Dominik Vogt <v...@linux.vnet.ibm.com> Date: Wed, 27 Jan 2016 11:50:49 +0100 Subject: [PATCH] PR other/69006: S/390: Fix extra newlines after diagnostics. --- gcc/config/s390/s390-c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/s390/s390-c.c b/gcc/config/s390/s390-c.c index 14d030d..2b6e405 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; } -- 2.3.0