HsBool should be HsInt, not StgBool
authorSimon Marlow <simonmar@microsoft.com>
Tue, 18 Apr 2006 14:42:14 +0000 (14:42 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Tue, 18 Apr 2006 14:42:14 +0000 (14:42 +0000)
StgBool is mapped to C's int type.  GHC doesn't currently know the
size of a C int on the target arch, it's easier to use StgInt instead.
I guess nobody ever uses Bool arguments to foreign imports/exports.

includes/HsFFI.h

index 70891a2..cd9f7ed 100644 (file)
@@ -81,7 +81,7 @@ typedef StgWord32             HsWord32;
 typedef StgWord64              HsWord64;
 typedef StgFloat               HsFloat;
 typedef StgDouble              HsDouble;
-typedef StgBool                        HsBool;
+typedef StgInt                 HsBool;
 typedef void*                  HsPtr;          /* this should better match StgAddr */
 typedef void                   (*HsFunPtr)(void); /* this should better match StgAddr */
 typedef void*                  HsForeignPtr;   /* ... and this StgForeignPtr       */