diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-05-19 15:41:03 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-05-19 15:41:03 +0100 |
commit | e20dfbcdaaa4c735d5adc235442716fc9597e4fd (patch) | |
tree | 9ce4fdc13e35caff0101a7b88306db54fba93fe1 /includes | |
parent | a4cc7b11afe212a6b9965a406c791e669ea5fc5b (diff) | |
download | haskell-e20dfbcdaaa4c735d5adc235442716fc9597e4fd.tar.gz |
Expose __word_encode{Float,Double}; fixes integer-simple build
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/PrimFloat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/rts/PrimFloat.h b/includes/rts/PrimFloat.h index 7d137a7b6c..96a7d25df3 100644 --- a/includes/rts/PrimFloat.h +++ b/includes/rts/PrimFloat.h @@ -14,5 +14,7 @@ StgDouble __int_encodeDouble (I_ j, I_ e); StgFloat __int_encodeFloat (I_ j, I_ e); +StgDouble __word_encodeDouble (W_ j, I_ e); +StgFloat __word_encodeFloat (W_ j, I_ e); #endif /* RTS_PRIMFLOAT_H */ |