This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Move DECL_VINDEX and DECL_SAVED_TREE into function_decl


> I'm seeing ICEs: Âtree check: expected function_decl, have type_decl in
> fold_checksum_tree, at fold-const.c:14861Â.  Is the following the correct
> fix, or should this be done differently?

No, it seems fine to me.  I added it to my local patch, thanks!
Honza
> 
> --- gcc/fold-const.c
> +++ gcc/fold-const.c
> @@ -14858,7 +14858,8 @@ fold_checksum_tree (const_tree expr, struct md5_ctx *ctx,
>  
>        if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_NON_COMMON))
>  	{
> -	  fold_checksum_tree (DECL_VINDEX (expr), ctx, ht);
> +	  if (TREE_CODE (expr) == FUNCTION_DECL)
> +	    fold_checksum_tree (DECL_VINDEX (expr), ctx, ht);
>  	  fold_checksum_tree (DECL_RESULT_FLD (expr), ctx, ht);
>  	  fold_checksum_tree (DECL_ARGUMENT_FLD (expr), ctx, ht);
>  	}
> 
> 
> GrÃÃe,
>  Thomas



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]