public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] Fixup missing host_integerp call
@ 2011-04-11 15:48 Richard Guenther
  0 siblings, 0 replies; only message in thread
From: Richard Guenther @ 2011-04-11 15:48 UTC (permalink / raw)
  To: gcc-patches


This fixes a missed check before calling tree_int_cst_low.

Bootstrapped and tested on x86_64-unknown-linux-gnu, applied.

Richard.

2011-04-11  Richard Guenther  <rguenther@suse.de>

	* gimplify.c (gimple_fold_indirect_ref): Check host_integerp
	before calling tree_low_cst.

Index: gcc/gimplify.c
===================================================================
*** gcc/gimplify.c	(revision 172252)
--- gcc/gimplify.c	(working copy)
*************** gimple_fold_indirect_ref (tree t)
*** 4079,4087 ****
        /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
        if (TREE_CODE (addr) == ADDR_EXPR
  	  && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
! 	  && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
  	{
!           HOST_WIDE_INT offset = tree_low_cst (off, 0);
            tree part_width = TYPE_SIZE (type);
            unsigned HOST_WIDE_INT part_widthi
              = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
--- 4079,4088 ----
        /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
        if (TREE_CODE (addr) == ADDR_EXPR
  	  && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
! 	  && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
! 	  && host_integerp (off, 1))
  	{
!           unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
            tree part_width = TYPE_SIZE (type);
            unsigned HOST_WIDE_INT part_widthi
              = tree_low_cst (part_width, 0) / BITS_PER_UNIT;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-04-11 15:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-11 15:48 [PATCH] Fixup missing host_integerp call Richard Guenther

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).