diff options
author | Tom Tromey <tromey@redhat.com> | 2011-10-17 09:59:40 +0000 |
---|---|---|
committer | Dodji Seketeli <dodji@gcc.gnu.org> | 2011-10-17 11:59:40 +0200 |
commit | 847e697a240e6d30335335c62084743978fa2084 (patch) | |
tree | 1df29dda9c3f6fb6e559fa82140695ea5b6130d1 /libcpp/include/line-map.h | |
parent | 07a0b324eb7e353146340f00db380c6d92851fc9 (diff) | |
download | gcc-847e697a240e6d30335335c62084743978fa2084.zip gcc-847e697a240e6d30335335c62084743978fa2084.tar.gz gcc-847e697a240e6d30335335c62084743978fa2084.tar.bz2 |
Support -fdebug-cpp option
This patch adds -fdebug-cpp option. When used with -E this dumps the
relevant macro map before every single token. This clutters the output
a lot but has proved to be invaluable in tracking some bugs during the
development of the virtual location support.
Co-Authored-By: Dodji Seketeli <dodji@redhat.com>
From-SVN: r180084
Diffstat (limited to 'libcpp/include/line-map.h')
-rw-r--r-- | libcpp/include/line-map.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcpp/include/line-map.h b/libcpp/include/line-map.h index 724f3f0..04a523c 100644 --- a/libcpp/include/line-map.h +++ b/libcpp/include/line-map.h @@ -675,4 +675,8 @@ expanded_location linemap_expand_location_full (struct line_maps *, source_location loc, enum location_resolution_kind lrk); +/* Dump debugging information about source location LOC into the file + stream STREAM. SET is the line map set LOC comes from. */ +void linemap_dump_location (struct line_maps *, source_location, FILE *); + #endif /* !LIBCPP_LINE_MAP_H */ |