re PR tree-optimization/43528 (ICE: in tree_low_cst, at tree.c:6198 with -mms-bitfields at x86_64-linux)

PR tree-optimization/43528
	* stor-layout.c (place_field): Check that constant fits into
	unsigned HWI when skipping calculation of MS bitfield layout.

testsuite/ChangeLog:

	PR tree-optimization/43528
	* gcc.target/i386/pr43528.c: New test.

From-SVN: r157776
This commit is contained in:
Uros Bizjak 2010-03-27 14:40:08 +01:00 committed by Uros Bizjak
parent a9deb2560c
commit fb6807b860
4 changed files with 21 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2010-03-27 Uros Bizjak <ubizjak@gmail.com>
PR tree-optimization/43528
* stor-layout.c (place_field): Check that constant fits into
unsigned HWI when skipping calculation of MS bitfield layout.
2010-03-27 Jan Hubicka <jh@suse.cz>
PR middle-end/43391

View File

@ -1346,11 +1346,12 @@ place_field (record_layout_info rli, tree field)
until we see a bitfield (and come by here again) we just skip
calculating it. */
if (DECL_SIZE (field) != NULL
&& host_integerp (TYPE_SIZE (TREE_TYPE (field)), 0)
&& host_integerp (DECL_SIZE (field), 0))
&& host_integerp (TYPE_SIZE (TREE_TYPE (field)), 1)
&& host_integerp (DECL_SIZE (field), 1))
{
HOST_WIDE_INT bitsize = tree_low_cst (DECL_SIZE (field), 1);
HOST_WIDE_INT typesize
unsigned HOST_WIDE_INT bitsize
= tree_low_cst (DECL_SIZE (field), 1);
unsigned HOST_WIDE_INT typesize
= tree_low_cst (TYPE_SIZE (TREE_TYPE (field)), 1);
if (typesize < bitsize)

View File

@ -1,3 +1,8 @@
2010-03-27 Uros Bizjak <ubizjak@gmail.com>
PR tree-optimization/43528
* gcc.target/i386/pr43528.c: New test.
2010-03-26 Joseph Myers <joseph@codesourcery.com>
PR c/43381

View File

@ -0,0 +1,5 @@
/* { dg-do compile } */
/* { dg-require-effective-target lp64 } */
/* { dg-options "-mms-bitfields" } */
struct S { int i[(1LL << 60) - 1]; };