From: Jakub Jelinek Date: Thu, 7 Apr 2011 18:29:28 +0000 (+0200) Subject: backport: re PR debug/48204 (ICE: in decimal_to_decnumber, at dfp.c:115 with -fno... X-Git-Tag: releases/gcc-4.5.3~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3295c0504387d420a2fd8afd7d46ac931f11b9a1;p=thirdparty%2Fgcc.git backport: re PR debug/48204 (ICE: in decimal_to_decnumber, at dfp.c:115 with -fno-tree-ccp -fno-tree-dominator-opts -fno-tree-fre -g) Backported from mainline 2011-03-24 Jakub Jelinek PR debug/48204 * simplify-rtx.c (simplify_const_unary_operation): Call real_convert when changing mode class with FLOAT_EXTEND. * gcc.dg/dfp/pr48204.c: New test. From-SVN: r172117 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 01ce6860d7d7..181277fe7df7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,12 @@ 2011-04-07 Jakub Jelinek Backported from mainline + 2011-03-24 Jakub Jelinek + + PR debug/48204 + * simplify-rtx.c (simplify_const_unary_operation): Call + real_convert when changing mode class with FLOAT_EXTEND. + 2011-03-17 Jakub Jelinek PR rtl-optimization/48141 diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 6f754674c7f9..e50a3904ed7a 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -1468,7 +1468,8 @@ simplify_const_unary_operation (enum rtx_code code, enum machine_mode mode, } else if (GET_CODE (op) == CONST_DOUBLE - && SCALAR_FLOAT_MODE_P (mode)) + && SCALAR_FLOAT_MODE_P (mode) + && SCALAR_FLOAT_MODE_P (GET_MODE (op))) { REAL_VALUE_TYPE d, t; REAL_VALUE_FROM_CONST_DOUBLE (d, op); @@ -1491,7 +1492,10 @@ simplify_const_unary_operation (enum rtx_code code, enum machine_mode mode, d = real_value_truncate (mode, d); break; case FLOAT_EXTEND: - /* All this does is change the mode. */ + /* All this does is change the mode, unless changing + mode class. */ + if (GET_MODE_CLASS (mode) != GET_MODE_CLASS (GET_MODE (op))) + real_convert (&d, mode, &d); break; case FIX: real_arithmetic (&d, FIX_TRUNC_EXPR, &d, NULL); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 175a4548ac81..185b616707f4 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,6 +1,11 @@ 2011-04-07 Jakub Jelinek Backported from mainline + 2011-03-24 Jakub Jelinek + + PR debug/48204 + * gcc.dg/dfp/pr48204.c: New test. + 2011-03-17 Jakub Jelinek PR rtl-optimization/48141 diff --git a/gcc/testsuite/gcc.dg/dfp/pr48204.c b/gcc/testsuite/gcc.dg/dfp/pr48204.c new file mode 100644 index 000000000000..7b421581e6e3 --- /dev/null +++ b/gcc/testsuite/gcc.dg/dfp/pr48204.c @@ -0,0 +1,10 @@ +/* PR debug/48204 */ +/* { dg-do compile } */ +/* { dg-options "-O -fno-tree-ccp -fno-tree-dominator-opts -fno-tree-fre -g" } */ + +void +foo (void) +{ + float cf = 3.0f; + _Decimal64 d64 = cf; +}