libcpp uses diagnostic->override_column to give a custom column number to diagnostics.

libcpp uses diagnostic->override_column to give a custom column number to
diagnostics. This is taken into account when building the prefix, but it was
missing when placing the caret.

2014-12-03  Manuel López-Ibáñez  <manu@gcc.gnu.org>

	* diagnostic.c (diagnostic_show_locus): Honor override_column when
	placing the caret.

From-SVN: r218295
This commit is contained in:
Manuel López-Ibáñez 2014-12-02 23:16:21 +00:00
parent f5d5b88fe5
commit 7f9283bf66
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2014-12-03 Manuel López-Ibáñez <manu@gcc.gnu.org>
* diagnostic.c (diagnostic_show_locus): Honor override_column when
placing the caret.
2014-12-02 Dmitry Vyukov <dvyukov@google.com>
* asan.c: (asan_finish_file): Use default priority for constructors

View File

@ -310,6 +310,8 @@ diagnostic_show_locus (diagnostic_context * context,
context->last_location = diagnostic->location;
s = expand_location_to_spelling_point (diagnostic->location);
if (diagnostic->override_column)
s.column = diagnostic->override_column;
line = location_get_source_line (s, &line_width);
if (line == NULL || s.column > line_width)
return;