diff options
author | Dominique d'Humieres <dominiq@lps.ens.fr> | 2015-11-11 15:30:16 +0100 |
---|---|---|
committer | Dominique d'Humieres <dominiq@gcc.gnu.org> | 2015-11-11 15:30:16 +0100 |
commit | 4ac93c7cf665ea0dfb2313ccd8216afb9a4a5763 (patch) | |
tree | 6ca3a9e06f9b9efec5c30e00e27fc5787c4d924f /gcc/cp/parser.h | |
parent | bd94906f987eb065dd6d4e9cadef82f7513d05cd (diff) | |
download | gcc-4ac93c7cf665ea0dfb2313ccd8216afb9a4a5763.zip gcc-4ac93c7cf665ea0dfb2313ccd8216afb9a4a5763.tar.gz gcc-4ac93c7cf665ea0dfb2313ccd8216afb9a4a5763.tar.bz2 |
re PR bootstrap/68271 (Boostrap fails on x86_64-apple-darwin14 at r230084)
gcc/cp/ChangeLog
2015-11-11 Dominique d'Humieres <dominiq@lps.ens.fr>
PR bootstrap/68271
* parser.h (cp_token): Update pragma_kind to 8.
gcc/c-family/ChangeLog
2015-11-11 Dominique d'Humieres <dominiq@lps.ens.fr>
PR bootstrap/68271
* c-pragma.c (c_register_pragma_1): Update the gcc_assert to 256.
From-SVN: r230172
Diffstat (limited to 'gcc/cp/parser.h')
-rw-r--r-- | gcc/cp/parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/parser.h b/gcc/cp/parser.h index fdbff66..022d037 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 |