From: Richard Guenther Date: Wed, 22 Apr 2009 15:41:48 +0000 (+0000) Subject: re PR middle-end/39824 (ice in fold-const.c) X-Git-Tag: releases/gcc-4.5.0~6268 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aea4deba9fe05d970dff5a8f16c584680243319f;p=thirdparty%2Fgcc.git re PR middle-end/39824 (ice in fold-const.c) 2009-04-22 Richard Guenther PR tree-optimization/39824 * tree-ssa-ccp.c (fold_const_aggregate_ref): For INDIRECT_REFs make sure the types are compatible. * gcc.c-torture/compile/pr39824.c: New testcase. From-SVN: r146592 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f037097d36e8..18a3573a3384 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2009-04-22 Richard Guenther + + PR tree-optimization/39824 + * tree-ssa-ccp.c (fold_const_aggregate_ref): For INDIRECT_REFs + make sure the types are compatible. + 2009-04-22 Manuel Lopez-Ibanez PR c++/14875 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 386ce8cae694..d2ef13c8332f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2009-04-22 Richard Guenther + + PR tree-optimization/39824 + * gcc.c-torture/compile/pr39824.c: New testcase. + 2009-04-22 Manuel Lopez-Ibanez PR c++/14875 diff --git a/gcc/testsuite/gcc.c-torture/compile/pr39824.c b/gcc/testsuite/gcc.c-torture/compile/pr39824.c new file mode 100644 index 000000000000..362fb17b83c5 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr39824.c @@ -0,0 +1,26 @@ +static const double internalEndianMagic = 7.949928895127363e-275; +static const unsigned char ieee_754_mantissa_mask[] = { 0x00, 0x0F, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF }; +static inline int +trio_isnan (double number) +{ + int has_mantissa = 0; + unsigned int i; + unsigned char current; + for (i = 0; i < (unsigned int)sizeof(double); i++) + { + current = ((unsigned char *)&number)[(((unsigned char + *)&internalEndianMagic)[7-(i)])]; + has_mantissa |= (current & ieee_754_mantissa_mask[i]); + } + return has_mantissa; +} +void +xmlXPathEqualNodeSetFloat(int nodeNr, double v) +{ + int i; + for (i=0; ilattice_val == CONSTANT - && TREE_CODE (value->value) == ADDR_EXPR) + && TREE_CODE (value->value) == ADDR_EXPR + && useless_type_conversion_p (TREE_TYPE (t), + TREE_TYPE (TREE_TYPE (value->value)))) return fold_const_aggregate_ref (TREE_OPERAND (value->value, 0)); break; }