This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Fix bool problem
- From: Eric Botcazou <ebotcazou at libertysurf dot fr>
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 31 May 2004 17:01:35 +0200
- Subject: Fix bool problem
Introduced by Mark's 05/28 patch, it makes it impossible to build a cross
with the system compiler on RHL 7.3.
Commited as obvious.
2004-05-31 Eric Botcazou <ebotcazou@libertysurf.fr>
* parser.c (cp_parser_simple_type_specifier): Explicitly test
against NULL_TREE.
--
Eric Botcazou
Index: parser.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/parser.c,v
retrieving revision 1.196
diff -u -p -r1.196 parser.c
--- parser.c 28 May 2004 20:16:01 -0000 1.196
+++ parser.c 31 May 2004 14:54:57 -0000
@@ -8960,7 +8960,8 @@ cp_parser_simple_type_specifier (cp_pars
/*typename_keyword_p=*/false,
/*check_dependency_p=*/true,
/*type_p=*/false,
- /*is_declaration=*/false));
+ /*is_declaration=*/false)
+ != NULL_TREE);
/* If we have seen a nested-name-specifier, and the next token
is `template', then we are using the template-id production. */
if (parser->scope