aboutsummaryrefslogtreecommitdiff
path: root/gcc/diagnostic.c
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>2005-03-01 08:37:45 -0800
committerPer Bothner <bothner@gcc.gnu.org>2005-03-01 08:37:45 -0800
commit255508ddad675d1d846a6e90b9c016f519948486 (patch)
tree5e8194fd7a7177e4ab224ad8c1642799ba8a6f95 /gcc/diagnostic.c
parent17c1e037352d472bfe5d6a21b040b65af4356208 (diff)
downloadgcc-255508ddad675d1d846a6e90b9c016f519948486.zip
gcc-255508ddad675d1d846a6e90b9c016f519948486.tar.gz
gcc-255508ddad675d1d846a6e90b9c016f519948486.tar.bz2
diagnostic.c (diagnostic_build_prefix): If USE_MAPPED_LOCATION and we have a non-zero column-number, add it to the message.
* diagnostic.c (diagnostic_build_prefix): If USE_MAPPED_LOCATION and we have a non-zero column-number, add it to the message. Also factor out the diagnostic_kind_text. From-SVN: r95746
Diffstat (limited to 'gcc/diagnostic.c')
-rw-r--r--gcc/diagnostic.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c
index b047167..39b46fc 100644
--- a/gcc/diagnostic.c
+++ b/gcc/diagnostic.c
@@ -133,15 +133,18 @@ diagnostic_build_prefix (diagnostic_info *diagnostic)
#undef DEFINE_DIAGNOSTIC_KIND
"must-not-happen"
};
+ const char *text = _(diagnostic_kind_text[diagnostic->kind]);
expanded_location s = expand_location (diagnostic->location);
gcc_assert (diagnostic->kind < DK_LAST_DIAGNOSTIC_KIND);
- return s.file
- ? build_message_string ("%s:%d: %s",
- s.file, s.line,
- _(diagnostic_kind_text[diagnostic->kind]))
- : build_message_string ("%s: %s", progname,
- _(diagnostic_kind_text[diagnostic->kind]));
+ return
+ (s.file == NULL
+ ? build_message_string ("%s: %s", progname, text)
+#ifdef USE_MAPPED_LOCATION
+ : s.column != 0
+ ? build_message_string ("%s:%d:%d: %s", s.file, s.line, s.column, text)
+#endif
+ : build_message_string ("%s:%d: %s", s.file, s.line, text));
}
/* Count a diagnostic. Return true if the message should be printed. */