re PR middle-end/23312 (ACATS ICE (32) gimplify_one_sizepos, at gimplify.c:4659)

PR middle-end/23312
        * gimplify.c (gimplify_one_sizepos): Check for INTEGER_TYPE
        before using TYPE_IS_SIZETYPE.

From-SVN: r102997
This commit is contained in:
Richard Henderson 2005-08-11 10:12:30 -07:00 committed by Richard Henderson
parent 4ead2a39a3
commit 7fd6694baf
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-08-11 Richard Henderson <rth@redhat.com>
PR middle-end/23312
* gimplify.c (gimplify_one_sizepos): Check for INTEGER_TYPE
before using TYPE_IS_SIZETYPE.
2005-08-11 Richard Henderson <rth@redhat.com>
PR target/22225

View File

@ -4634,7 +4634,9 @@ gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
type-stripping code with this knowledge because it doesn't matter
for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
and friends retain their "sizetype-ness". */
if (TREE_TYPE (expr) != type && TYPE_IS_SIZETYPE (type))
if (TREE_TYPE (expr) != type
&& TREE_CODE (type) == INTEGER_TYPE
&& TYPE_IS_SIZETYPE (type))
{
tree tmp;