OSDN Git Service

libgcc/
[pf3gnuchains/gcc-fork.git] / libgcc / config / libbid / _dd_to_di.c
index a86a2fa..847138f 100644 (file)
@@ -28,14 +28,16 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
 
 #include "bid_conf.h"
 #include "bid_functions.h"
+#include "bid_gcc_intrinsics.h"
 
 DItype
 __bid_fixdddi (_Decimal64 x) {
-  DItype res;
+  DItype res = 0xbaddbaddbaddbaddull;
   union decimal64 ux;
 
   ux.d = x;
   res = __bid64_to_int64_xint (ux.i);
+
   return (res);
 }