From: H.J. Lu Date: Fri, 12 Sep 2003 22:26:54 +0000 (+0000) Subject: re PR bootstrap/12264 (Mainline faield to bootstrap) X-Git-Tag: releases/gcc-3.4.0~3761 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=edeb387130d1abc819b23390bc95595c65cea879;p=thirdparty%2Fgcc.git re PR bootstrap/12264 (Mainline faield to bootstrap) PR bootstrap/12264 * tree-inline.c (inline_forbidden_p_1): Cast the 3rd arg to tree. From-SVN: r71343 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 930abaa53acb..29d7b164ec74 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-09-12 H.J. Lu + + PR bootstrap/12264 + * tree-inline.c (inline_forbidden_p_1): Cast the 3rd arg to tree. + 2003-09-12 Bob Wilson * config/xtensa/elf.h (ASM_SPEC): Remove no-density option. Reformat. diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 43e98483089f..bd027eb3d9d6 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -880,9 +880,10 @@ static const char *inline_forbidden_reason; static tree inline_forbidden_p_1 (tree *nodep, int *walk_subtrees ATTRIBUTE_UNUSED, - void *fn) + void *fnp) { tree node = *nodep; + tree fn = (tree) fnp; tree t; switch (TREE_CODE (node))