Use int64_t in x86_64/fpu/math_private.h
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 19 Mar 2012 22:09:58 +0000 (15:09 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Mon, 19 Mar 2012 22:17:48 +0000 (15:17 -0700)
ChangeLog
sysdeps/x86_64/fpu/math_private.h

index f6b7c2b..295f499 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 
 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
 
+       * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64): Use
+       int64_t instead of long int.
+       (INSERT_WORDS64): Likwise.
+
+2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
+
        * sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
        _Unwind_GetCFA return to _Unwind_Ptr first.
 
index 67c5f6a..63a699e 100644 (file)
@@ -12,7 +12,7 @@
 /* Direct movement of float into integer register.  */
 #define EXTRACT_WORDS64(i, d)                                                \
   do {                                                                       \
-    long int i_;                                                             \
+    int64_t i_;                                                                      \
     asm (MOVD " %1, %0" : "=rm" (i_) : "x" ((double) (d)));                  \
     (i) = i_;                                                                \
   } while (0)
@@ -20,7 +20,7 @@
 /* And the reverse.  */
 #define INSERT_WORDS64(d, i) \
   do {                                                                       \
-    long int i_ = i;                                                         \
+    int64_t i_ = i;                                                          \
     double d__;                                                                      \
     asm (MOVD " %1, %0" : "=x" (d__) : "rm" (i_));                           \
     d = d__;                                                                 \