re PR other/64370 (sreal.c:125:23: error: 'exp2' was not declared in this scope)
authorJakub Jelinek <jakub@redhat.com>
Mon, 12 Jan 2015 20:30:09 +0000 (21:30 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 12 Jan 2015 20:30:09 +0000 (21:30 +0100)
PR other/64370
* sreal.c (sreal::to_double): Use ldexp instead of scalbnl.

From-SVN: r219489

gcc/ChangeLog
gcc/sreal.c

index 4fc60ef..775efde 100644 (file)
@@ -1,3 +1,8 @@
+2015-01-12  Jakub Jelinek  <jakub@redhat.com>
+
+       PR other/64370
+       * sreal.c (sreal::to_double): Use ldexp instead of scalbnl.
+
 2015-01-12  Jeff Law  <law@redhat.com>
 
        PR target/64461
index 622fc2d..94b75dd 100644 (file)
@@ -122,7 +122,7 @@ sreal::to_double () const
 {
   double val = m_sig;
   if (m_exp)
-    val = scalbln (val, m_exp);
+    val = ldexp (val, m_exp);
   return val;
 }