diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-09-09 09:32:17 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-09-09 09:32:17 +0000 |
commit | 9a9803e8dc80ba41bd3e2d31228e64fa6b61060e (patch) | |
tree | 7a31b6abc9b585771bd88df29e8502bb0e5da31b /rts/sm/Storage.h | |
parent | b25c93f1c914d81d77aeafeb49263f29bed128aa (diff) | |
download | haskell-9a9803e8dc80ba41bd3e2d31228e64fa6b61060e.tar.gz |
Omit visibility pragmas on Windows (fixes warnings/validate failures)
Diffstat (limited to 'rts/sm/Storage.h')
-rw-r--r-- | rts/sm/Storage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/sm/Storage.h b/rts/sm/Storage.h index 573d6bcd5b..5ddcbdcdc2 100644 --- a/rts/sm/Storage.h +++ b/rts/sm/Storage.h @@ -9,7 +9,7 @@ #ifndef SM_STORAGE_H #define SM_STORAGE_H -#pragma GCC visibility push(hidden) +BEGIN_RTS_PRIVATE /* ----------------------------------------------------------------------------- Initialisation / De-initialisation @@ -156,6 +156,6 @@ void move_TSO (StgTSO *src, StgTSO *dest); extern StgClosure * caf_list; extern StgClosure * revertible_caf_list; -#pragma GCC visibility pop +END_RTS_PRIVATE #endif /* SM_STORAGE_H */ |