mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-02 05:50:26 +08:00
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:
parent
4ead2a39a3
commit
7fd6694baf
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user