summaryrefslogtreecommitdiff
path: root/rts/StgPrimFloat.h
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2009-09-09 09:32:17 +0000
committerSimon Marlow <marlowsd@gmail.com>2009-09-09 09:32:17 +0000
commit9a9803e8dc80ba41bd3e2d31228e64fa6b61060e (patch)
tree7a31b6abc9b585771bd88df29e8502bb0e5da31b /rts/StgPrimFloat.h
parentb25c93f1c914d81d77aeafeb49263f29bed128aa (diff)
downloadhaskell-9a9803e8dc80ba41bd3e2d31228e64fa6b61060e.tar.gz
Omit visibility pragmas on Windows (fixes warnings/validate failures)
Diffstat (limited to 'rts/StgPrimFloat.h')
-rw-r--r--rts/StgPrimFloat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/StgPrimFloat.h b/rts/StgPrimFloat.h
index f0e466b76b..3f5b3e5013 100644
--- a/rts/StgPrimFloat.h
+++ b/rts/StgPrimFloat.h
@@ -9,7 +9,7 @@
#ifndef STGPRIMFLOAT_H
#define STGPRIMFLOAT_H
-#pragma GCC visibility push(hidden)
+BEGIN_RTS_PRIVATE
/* 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);
@@ -21,6 +21,6 @@ StgFloat __word_encodeFloat (W_ j, I_ e);
// __int_encodeDouble and __int_encodeFloat are public, declared in
// includes/rts/PrimFloat.h.
-#pragma GCC visibility pop
+END_RTS_PRIVATE
#endif /* STGPRIMFLOAT_H */