aboutsummaryrefslogtreecommitdiff
path: root/libcpp/include
diff options
context:
space:
mode:
authorGabriel Charette <gchare@google.com>2011-08-15 20:35:58 +0000
committerGabriel Charette <gchare@gcc.gnu.org>2011-08-15 20:35:58 +0000
commit3f6ced102dddee2a41f6ae4e96c42a6580f8e279 (patch)
treef0b82291b2916fbc64b32cd6b2aa4f506273a69f /libcpp/include
parente535f1b22917730c13fc85f91360288d456f054f (diff)
downloadgcc-3f6ced102dddee2a41f6ae4e96c42a6580f8e279.zip
gcc-3f6ced102dddee2a41f6ae4e96c42a6580f8e279.tar.gz
gcc-3f6ced102dddee2a41f6ae4e96c42a6580f8e279.tar.bz2
LINEMAP_POSITION_FOR_COLUMN had the exact same effect as linemap_position_for_column...
LINEMAP_POSITION_FOR_COLUMN had the exact same effect as linemap_position_for_column, removed it and updated users to use linemap_position_for_column instead libcpp/ChangeLog * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Remove. Update all users to use linemap_position_for_column instead. gcc/go/ChangeLog * gofrontend/lex.cc (Lex::location): Update to use linemap_position_for_column instead. (Lex::earlier_location): Likewise. From-SVN: r177768
Diffstat (limited to 'libcpp/include')
-rw-r--r--libcpp/include/line-map.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/libcpp/include/line-map.h b/libcpp/include/line-map.h
index f1d5bee..3c84035 100644
--- a/libcpp/include/line-map.h
+++ b/libcpp/include/line-map.h
@@ -165,23 +165,6 @@ extern const struct line_map *linemap_lookup
/* Nonzero if the map is at the bottom of the include stack. */
#define MAIN_FILE_P(MAP) ((MAP)->included_from < 0)
-/* Set LOC to a source position that is the same line as the most recent
- linemap_line_start, but with the specified TO_COLUMN column number. */
-
-#define LINEMAP_POSITION_FOR_COLUMN(LOC, SET, TO_COLUMN) do { \
- unsigned int to_column = (TO_COLUMN); \
- struct line_maps *set = (SET); \
- if (__builtin_expect (to_column >= set->max_column_hint, 0)) \
- (LOC) = linemap_position_for_column (set, to_column); \
- else { \
- source_location r = set->highest_line; \
- r = r + to_column; \
- if (r >= set->highest_location) \
- set->highest_location = r; \
- (LOC) = r; \
- }} while (0)
-
-
extern source_location
linemap_position_for_column (struct line_maps *set, unsigned int to_column);