diff options
author | Ian Lynagh <igloo@earth.li> | 2010-04-21 16:23:36 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-04-21 16:23:36 +0000 |
commit | 81c95f7d9854521a568179bb19199299835b7a53 (patch) | |
tree | 148e2833ad3112356c87f0b9286032484d587181 /includes | |
parent | 7dbc1d8f8fb650162e01f6eab8dabaf1f53c819d (diff) | |
download | haskell-81c95f7d9854521a568179bb19199299835b7a53.tar.gz |
Use StgWord64 instead of ullong
This patch also fixes ullong_format_string (renamed to showStgWord64)
so that it works with values outside the 32bit range (trac #3979), and
simplifies the without-commas case.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/Types.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/includes/rts/Types.h b/includes/rts/Types.h index ff78402584..18a3ce00fe 100644 --- a/includes/rts/Types.h +++ b/includes/rts/Types.h @@ -16,13 +16,6 @@ typedef unsigned int nat; /* at least 32 bits (like int) */ typedef unsigned long lnat; /* at least 32 bits */ -#ifndef _MSC_VER -typedef unsigned long long ullong; /* at least 32 bits */ -typedef long long llong; -#else -typedef unsigned __int64 ullong; /* at least 32 bits */ -typedef __int64 llong; -#endif /* ullong (64|128-bit) type: only include if needed (not ANSI) */ #if defined(__GNUC__) |