re PR debug/48204 (ICE: in decimal_to_decnumber, at dfp.c:115 with -fno-tree-ccp...
authorJakub Jelinek <jakub@redhat.com>
Thu, 24 Mar 2011 18:58:58 +0000 (19:58 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 24 Mar 2011 18:58:58 +0000 (19:58 +0100)
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: r171423

gcc/ChangeLog
gcc/simplify-rtx.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/dfp/pr48204.c [new file with mode: 0644]

index 046aea7..4e2732a 100644 (file)
@@ -1,3 +1,9 @@
+2011-03-24  Jakub Jelinek  <jakub@redhat.com>
+
+       PR debug/48204
+       * simplify-rtx.c (simplify_const_unary_operation): Call
+       real_convert when changing mode class with FLOAT_EXTEND.
+
 2011-03-24  Nick Clifton  <nickc@redhat.com>
 
        * config/rx/rx.h (LABEL_ALIGN_FOR_BARRIER): Define.
index 4a8e3c6..847a4bb 100644 (file)
@@ -1526,7 +1526,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);
@@ -1549,7 +1550,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);
index b7cad7f..c01c7cb 100644 (file)
@@ -1,3 +1,8 @@
+2011-03-24  Jakub Jelinek  <jakub@redhat.com>
+
+       PR debug/48204
+       * gcc.dg/dfp/pr48204.c: New test.
+
 2011-03-24  Steve Ellcey  <sje@cup.hp.com>
 
        PR target/48209
diff --git a/gcc/testsuite/gcc.dg/dfp/pr48204.c b/gcc/testsuite/gcc.dg/dfp/pr48204.c
new file mode 100644 (file)
index 0000000..7b42158
--- /dev/null
@@ -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;
+}