1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2009
4  *
5  * Primitive floating-point operations
6  *
7  * To understand the structure of the RTS headers, see the wiki:
8  *   http://ghc.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
9  *
10  * ---------------------------------------------------------------------------*/
11 
12 #pragma once
13 
14 StgDouble __int_encodeDouble (I_ j, I_ e);
15 StgFloat  __int_encodeFloat (I_ j, I_ e);
16 StgDouble __word_encodeDouble (W_ j, I_ e);
17 StgFloat  __word_encodeFloat (W_ j, I_ e);
18