diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-12-07 23:05:59 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-12-07 23:05:59 +0100 |
commit | b0c084b712f2516593123613170d8bc1a6afa44b (patch) | |
tree | 4c4b018e43b3666acb5b9a2b111beb302182fae9 /libcpp/init.c | |
parent | ff180d72d9b327acc96bfacf45af71dac5b04006 (diff) | |
download | gcc-b0c084b712f2516593123613170d8bc1a6afa44b.zip gcc-b0c084b712f2516593123613170d8bc1a6afa44b.tar.gz gcc-b0c084b712f2516593123613170d8bc1a6afa44b.tar.bz2 |
re PR bootstrap/50237 (bootstrap comparison failure for libcpp/lex.o)
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.
From-SVN: r182090
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 9101b34..ff006b1 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. */ |