diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-12-07 22:05:59 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-12-07 22:05:59 +0000 |
commit | b735cc56a2aab6b3a1c22f0521a1d607a36e5a61 (patch) | |
tree | 4c4b018e43b3666acb5b9a2b111beb302182fae9 /libcpp/init.c | |
parent | 5f72d880cad044ccc5f0e24a55168a95ef4a667d (diff) | |
download | gcc-b735cc56a2aab6b3a1c22f0521a1d607a36e5a61.tar.gz |
PR bootstrap/50237
* internal.h (_cpp_init_lexer): New prototype.
* init.c (init_library): Call it.
* lex.c (init_vectorized_lexer): Remove constructor attribute,
add inline keyword.
(HAVE_init_vectorized_lexer): Define.
(_cpp_init_lexer): New function.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182090 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/init.c')
-rw-r--r-- | libcpp/init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcpp/init.c b/libcpp/init.c index 9101b34e086..ff006b11502 100644 --- a/libcpp/init.c +++ b/libcpp/init.c @@ -134,6 +134,8 @@ init_library (void) { initialized = 1; + _cpp_init_lexer (); + /* Set up the trigraph map. This doesn't need to do anything if we were compiled with a compiler that supports C99 designated initializers. */ |