Guest User

Untitled

a guest
Apr 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. --- src/gauche/float.h.org 2009-11-15 22:41:26.000000000 +0900
  2. +++ src/gauche/float.h 2009-11-15 22:41:38.000000000 +0900
  3. @@ -84,7 +84,7 @@
  4. #if SIZEOF_LONG >= 8
  5. unsigned int sign:1;
  6. unsigned int exp:11;
  7. - unsigned long mant:52;
  8. + unsigned long long mant:52;
  9. #else /*SIZEOF_LONG < 8*/
  10. unsigned int sign:1;
  11. unsigned int exp:11;
  12. @@ -93,7 +93,7 @@
  13. #endif /*SIZEOF_LONG < 8*/
  14. #else /*!WORDS_BIGENDIAN*/
  15. #if SIZEOF_LONG >= 8
  16. - unsigned long mant:52;
  17. + unsigned long long mant:52;
  18. unsigned int exp:11;
  19. unsigned int sign:1;
  20. #else /*SIZEOF_LONG < 8*/
Add Comment
Please, Sign In to add comment