From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 93090 invoked by alias); 11 Nov 2015 13:11:43 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 93080 invoked by uid 89); 11 Nov 2015 13:11:42 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: nef2.ens.fr Received: from nef2.ens.fr (HELO nef2.ens.fr) (129.199.96.40) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 11 Nov 2015 13:11:41 +0000 Received: from mailhost.lps.ens.fr (tournesol.lps.ens.fr [129.199.120.1]) by nef2.ens.fr (8.13.6/1.01.28121999) with ESMTP id tABDBdGv038678 ; Wed, 11 Nov 2015 14:11:39 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mailhost.lps.ens.fr (Postfix) with ESMTP id 2C0E9171; Wed, 11 Nov 2015 14:11:39 +0100 (CET) Received: from mailhost.lps.ens.fr ([127.0.0.1]) by localhost (tournesol.lps.ens.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ezNXxAegiuh5; Wed, 11 Nov 2015 14:11:39 +0100 (CET) Received: from [192.168.1.14] (log78-1-82-242-47-10.fbx.proxad.net [82.242.47.10]) by mailhost.lps.ens.fr (Postfix) with ESMTPSA id 01C8616B; Wed, 11 Nov 2015 14:11:38 +0100 (CET) From: =?utf-8?Q?Dominique_d=27Humi=C3=A8res?= Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: [PATCH] PR68271 [6 Regression] Boostrap fails on x86_64-apple-darwin14 at r230084 Date: Wed, 11 Nov 2015 13:11:00 -0000 Message-Id: <9219A6A9-0D23-47B1-99DF-892D310754EF@lps.ens.fr> Cc: jakub Jelinek To: gcc-patches Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) X-SW-Source: 2015-11/txt/msg01362.txt.bz2 The following patch restore bootstrap on darwin --- ../_clean/gcc/cp/parser.h 2015-11-10 01:54:44.000000000 +0100 +++ gcc/cp/parser.h 2015-11-11 12:10:28.000000000 +0100 @@ -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 --- ../_clean/gcc/c-family/c-pragma.c 2015-11-10 01:54:43.000000000 +0100 +++ gcc/c-family/c-pragma.c 2015-11-11 12:10:25.000000000 +0100 @@ -1372,7 +1372,7 @@ c_register_pragma_1 (const char *space,=20 =20 /* 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); + gcc_assert (id < 256); } =20 cpp_register_deferred_pragma (parse_in, space, name, id, OK to commit? Dominique