X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FStgPrimFloat.h;h=cd5da46326ac45cdfd24e1de7acc6fc2d5ff2746;hb=7d9eb2e45b4a9ff4cb053b1ec37602be88528b62;hp=13d3a5965a31aa5a0c70c7302d07f0f0e7ea7b0f;hpb=7d7c187b4a12f1bb350e85cdb0115e19537cc704;p=ghc-hetmet.git diff --git a/rts/StgPrimFloat.h b/rts/StgPrimFloat.h index 13d3a59..cd5da46 100644 --- a/rts/StgPrimFloat.h +++ b/rts/StgPrimFloat.h @@ -9,17 +9,18 @@ #ifndef STGPRIMFLOAT_H #define STGPRIMFLOAT_H -#pragma GCC visibility push(hidden) +#include "BeginPrivate.h" /* grimy low-level support functions defined in StgPrimFloat.c */ void __decodeDouble_2Int (I_ *man_sign, W_ *man_high, W_ *man_low, I_ *exp, StgDouble dbl); void __decodeFloat_Int (I_ *man, I_ *exp, StgFloat flt); StgDouble __2Int_encodeDouble (I_ j_high, I_ j_low, I_ e); -StgDouble __int_encodeDouble (I_ j, I_ e); StgDouble __word_encodeDouble (W_ j, I_ e); -StgFloat __int_encodeFloat (I_ j, I_ e); StgFloat __word_encodeFloat (W_ j, I_ e); -#pragma GCC visibility pop +// __int_encodeDouble and __int_encodeFloat are public, declared in +// includes/rts/PrimFloat.h. + +#include "EndPrivate.h" #endif /* STGPRIMFLOAT_H */