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
This commit is contained in:
Dominik Vogt 2016-01-29 10:12:11 +00:00 committed by Andreas Krebbel
parent a1c9546419
commit 647ffdb76f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2016-01-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
PR other/69006
* config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove
trailing blank line from error message.
2016-01-29 Jonathan Wakely <jwakely@redhat.com>
PR c++/69462

View File

@ -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;
}