Skip to content

Instantly share code, notes, and snippets.

@yujiorama
Created November 15, 2009 14:37
Show Gist options
  • Save yujiorama/235260 to your computer and use it in GitHub Desktop.
Save yujiorama/235260 to your computer and use it in GitHub Desktop.
--- src/gauche/float.h.org 2009-11-15 22:41:26.000000000 +0900
+++ src/gauche/float.h 2009-11-15 22:41:38.000000000 +0900
@@ -84,7 +84,7 @@
#if SIZEOF_LONG >= 8
unsigned int sign:1;
unsigned int exp:11;
- unsigned long mant:52;
+ unsigned long long mant:52;
#else /*SIZEOF_LONG < 8*/
unsigned int sign:1;
unsigned int exp:11;
@@ -93,7 +93,7 @@
#endif /*SIZEOF_LONG < 8*/
#else /*!WORDS_BIGENDIAN*/
#if SIZEOF_LONG >= 8
- unsigned long mant:52;
+ unsigned long long mant:52;
unsigned int exp:11;
unsigned int sign:1;
#else /*SIZEOF_LONG < 8*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment