diff options
author | Nathan Sidwell <nathan@acm.org> | 2018-10-31 15:26:28 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2018-10-31 15:26:28 +0000 |
commit | f3f6029db2e5f960c10062d8c8c74d766fcad6d2 (patch) | |
tree | 65fe76f5ca430fb5055b03a24045e1d61e3668be /libcpp/internal.h | |
parent | 82a14443dbad05cdf1bd09c7ebc98c406c81e384 (diff) | |
download | gcc-f3f6029db2e5f960c10062d8c8c74d766fcad6d2.zip gcc-f3f6029db2e5f960c10062d8c8c74d766fcad6d2.tar.gz gcc-f3f6029db2e5f960c10062d8c8c74d766fcad6d2.tar.bz2 |
[6/6] Preprocessor forced macro location
https://gcc.gnu.org/ml/gcc-patches/2018-10/msg02044.html
libcpp/
* internal.h (struct cpp_reader): Rename forced_token_location_p
to forced_token_location and drop its pointerness.
* include/cpplib.h (cpp_force_token_locations): Take location, not
pointer to one.
* init.c (cpp_create_reader): Adjust.
* lex.c (cpp_read_main_file):
gcc/c-family/
* c-opts.c (c_finish_options): Adjust cpp_force_token_locations call.
gcc/fortran/
* cpp.c (gfc_cpp_init): Adjust cpp_force_token_locations call.
From-SVN: r265692
Diffstat (limited to 'libcpp/internal.h')
-rw-r--r-- | libcpp/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcpp/internal.h b/libcpp/internal.h index 59f830c..98fefeb 100644 --- a/libcpp/internal.h +++ b/libcpp/internal.h @@ -570,9 +570,9 @@ struct cpp_reader /* List of saved macros by push_macro. */ struct def_pragma_macro *pushed_macros; - /* If non-null, the lexer will use this location for the next token + /* If non-zero, the lexer will use this location for the next token instead of getting a location from the linemap. */ - source_location *forced_token_location_p; + source_location forced_token_location; }; /* Character classes. Based on the more primitive macros in safe-ctype.h. |