diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-15 19:39:22 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-15 19:39:22 +0000 |
commit | 9832c97711d9ddfd71b288cae5fdc58303ef17f8 (patch) | |
tree | ebc3101d0b3f19f88936fde0371d7c4641a67818 /libcpp | |
parent | 537cd94120ab6384d2b255f0e5dcdafceb7853c3 (diff) | |
download | gcc-9832c97711d9ddfd71b288cae5fdc58303ef17f8.tar.gz |
* include/line-map.h (line_map_start): Add parameter names so
preceding comment makes sense.
(linemap_add): Remove from comment mention of non-existing parameter.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87561 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/ChangeLog | 6 | ||||
-rw-r--r-- | libcpp/include/line-map.h | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 7090249bd8a..b9aac7bad09 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,9 @@ +2004-09-15 Per Bothner <per@bothner.com> + + * include/line-map.h (line_map_start): Add parameter names so + preceding comment makes sense. + (linemap_add): Remove from comment mention of non-existing parameter. + 2004-09-09 Matt Austern <austern@apple.com> Zack Weinberg <zack@codesourcery.com> diff --git a/libcpp/include/line-map.h b/libcpp/include/line-map.h index 5b4ac1ec743..871baccdf39 100644 --- a/libcpp/include/line-map.h +++ b/libcpp/include/line-map.h @@ -108,7 +108,7 @@ extern void linemap_check_files_exited (struct line_maps *); the highest_location). */ extern source_location linemap_line_start -(struct line_maps *, unsigned int, unsigned int); +(struct line_maps *set, unsigned int to_line, unsigned int max_column_hint); /* Add a mapping of logical source line to physical source file and line number. @@ -119,8 +119,7 @@ extern source_location linemap_line_start TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their natural values considering the file we are returning to. - START_LOCATION should be monotonic increasing across calls to this - function. A call to this function can relocate the previous set of + A call to this function can relocate the previous set of maps, so any stored line_map pointers should not be used. */ extern const struct line_map *linemap_add (struct line_maps *, enum lc_reason, unsigned int sysp, |