diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-07 17:55:01 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-07 17:55:01 +0000 |
commit | c9fd1f3102c10198f7388d8a3d411f8b1d0f2669 (patch) | |
tree | eeb068aafafef2b19aa1d78e652937139b129316 /gcc/cpplib.h | |
parent | 648989ea8d5edfd656f5290a7263f50c177c4d3f (diff) | |
download | ppe42-gcc-c9fd1f3102c10198f7388d8a3d411f8b1d0f2669.tar.gz ppe42-gcc-c9fd1f3102c10198f7388d8a3d411f8b1d0f2669.zip |
* cpplib.h, line-map.h: Update comments.
* cppmain.c (printer_init): Move inline.
(maybe_print_line, print_line): Take a map pointer.
(cb_ident, cb_define, cb_undef, cb_include, cb_def_pragma): Update.
(cb_file_change): Don't use prior value of print.map.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44697 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 29f20d7cb65..32b3d8905e3 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -390,7 +390,7 @@ struct cpp_options typedef struct cpp_file_change cpp_file_change; struct cpp_file_change { - struct line_map *map; /* Line map to use until next callback. */ + struct line_map *map; /* Line map, valid until next callback. */ unsigned int line; /* Logical line number of next line. */ enum lc_reason reason; /* Reason for change. */ unsigned char sysp; /* Nonzero if system header. */ |