diff options
author | Jakub Jelinek <jakub@gcc.gnu.org> | 2018-01-27 07:27:47 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2018-01-27 07:27:47 +0100 |
commit | 53723269d6c97ceb61b825006dbfd711a339eb81 (patch) | |
tree | f2232529ad35c38904865dfb738a816179c1101c /libcpp | |
parent | 1f2460766e0e67648606c68a04c7b21aaa5d9a09 (diff) | |
download | gcc-53723269d6c97ceb61b825006dbfd711a339eb81.zip gcc-53723269d6c97ceb61b825006dbfd711a339eb81.tar.gz gcc-53723269d6c97ceb61b825006dbfd711a339eb81.tar.bz2 |
c-cppbuiltin.c (c_cpp_builtins): Use ggc_strdup for the fp_suffix argument.
* c-cppbuiltin.c (c_cpp_builtins): Use ggc_strdup for the fp_suffix
argument.
(LAZY_HEX_FP_VALUES_CNT): Define.
(lazy_hex_fp_values): Allow up to LAZY_HEX_FP_VALUES_CNT lazy hex fp
values rather than just 12.
(builtin_define_with_hex_fp_value): Likewise.
* include/cpplib.h (enum cpp_builtin_type): Change BT_LAST_USER from
BT_FIRST_USER + 31 to BT_FIRST_USER + 63.
From-SVN: r257118
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/ChangeLog | 7 | ||||
-rw-r--r-- | libcpp/include/cpplib.h | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 5d2aa26..fdddd93 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,8 +1,13 @@ +2018-01-27 Jakub Jelinek <jakub@redhat.com> + + * include/cpplib.h (enum cpp_builtin_type): Change BT_LAST_USER from + BT_FIRST_USER + 31 to BT_FIRST_USER + 63. + 2018-01-18 Boris Kolpackov <boris@codesynthesis.com> PR other/70268 * include/cpplib.h (cpp_callbacks::remap_filename): New callback. - * libcpp/macro.c (_cpp_builtin_macro_text): Call remap_filename for + * macro.c (_cpp_builtin_macro_text): Call remap_filename for __FILE__ and __BASE_FILE__. 2018-01-10 Kelvin Nilsen <kelvin@gcc.gnu.org> diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index 9814d0d..3ad52d5 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -719,7 +719,7 @@ enum cpp_builtin_type BT_COUNTER, /* `__COUNTER__' */ BT_HAS_ATTRIBUTE, /* `__has_attribute__(x)' */ BT_FIRST_USER, /* User defined builtin macros. */ - BT_LAST_USER = BT_FIRST_USER + 31 + BT_LAST_USER = BT_FIRST_USER + 63 }; #define CPP_HASHNODE(HNODE) ((cpp_hashnode *) (HNODE)) |