From: dominiq Date: Wed, 11 Nov 2015 14:30:16 +0000 (+0000) Subject: gcc/cp/ChangeLog X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f3707caa777667198e3f1a016bdf73465cb5f91;p=thirdparty%2Fgcc.git gcc/cp/ChangeLog 2015-11-11 Dominique d'Humieres PR bootstrap/68271 * parser.h (cp_token): Update pragma_kind to 8. gcc/c-family/ChangeLog 2015-11-11 Dominique d'Humieres PR bootstrap/68271 * c-pragma.c (c_register_pragma_1): Update the gcc_assert to 256. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230172 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 0a99798d5fa9..ed2ba46371c0 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,8 @@ +2015-11-11 Dominique d'Humieres + + PR bootstrap/68271 + * c-pragma.c (c_register_pragma_1): Update the gcc_assert to 256. + 2015-11-11 Andrew MacLeod * array-notation-common.c: Remove unused header files. diff --git a/gcc/c-family/c-pragma.c b/gcc/c-family/c-pragma.c index 26f001abbe52..f86ed3844229 100644 --- a/gcc/c-family/c-pragma.c +++ b/gcc/c-family/c-pragma.c @@ -1366,9 +1366,9 @@ c_register_pragma_1 (const char *space, const char *name, id = registered_pragmas.length (); id += PRAGMA_FIRST_EXTERNAL - 1; - /* The C++ front end allocates 6 bits in cp_token; the C front end - allocates 7 bits in c_token. At present this is sufficient. */ - gcc_assert (id < 64); + /* The C++ front end allocates 8 bits in cp_token; the C front end + allocates 8 bits in c_token. At present this is sufficient. */ + gcc_assert (id < 256); } cpp_register_deferred_pragma (parse_in, space, name, id, diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index b2f8b64e2c74..a170685c3250 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2015-11-11 Dominique d'Humieres + + PR bootstrap/68271 + * parser.h (cp_token): Update pragma_kind to 8. + 2015-11-11 Andrew MacLeod * call.c: Remove unused header files. diff --git a/gcc/cp/parser.h b/gcc/cp/parser.h index fdbff6664ef3..022d03787a81 100644 --- a/gcc/cp/parser.h +++ b/gcc/cp/parser.h @@ -48,7 +48,7 @@ struct GTY (()) cp_token { /* Token flags. */ unsigned char flags; /* Identifier for the pragma. */ - ENUM_BITFIELD (pragma_kind) pragma_kind : 6; + ENUM_BITFIELD (pragma_kind) pragma_kind : 8; /* True if this token is from a context where it is implicitly extern "C" */ BOOL_BITFIELD implicit_extern_c : 1; /* True if an error has already been reported for this token, such as a