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: [PATCH] Fix PR middle-end/20030, fold_indirect_ref and non zero lower bounds


On Thu, Feb 17, 2005 at 12:44:37PM -0500, Andrew Pinski wrote:
> -	return build4 (ARRAY_REF, type, op, size_zero_node, NULL_TREE, NULL_TREE);
> +	{
> +	  tree min_val = TYPE_MIN_VALUE (TYPE_DOMAIN (optype));
> +	  return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
> +	}

TYPE_DOMAIN isn't always set.  Neither is TYPE_MIN_VALUE.
You need to check for nulls and use zero.


r~


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