From bfad35ec110829e3915593d8588e9b863a799ee5 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Tue, 5 Dec 2017 16:44:30 -0500 Subject: [PATCH 08/29] FIXME: add && s.column != 0 from error.c to langhooks.c --- gcc/langhooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 0fab9d5..130d74b 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -449,7 +449,7 @@ lhd_print_error_function (diagnostic_context *context, const char *file, pp_newline (context->printer); if (s.file != NULL) { - if (context->show_column) + if (context->show_column && s.column != 0) pp_printf (context->printer, _(" inlined from %qs at %r%s:%d:%d%R"), identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)), -- 1.8.5.3