diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2014-10-02 21:30:26 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2014-10-02 21:34:40 +0100 |
commit | eb191ab6c85f4b668a6e9151dcecaf1f1e7ec7c2 (patch) | |
tree | 53b3941601a81090eb159dbd28fc9d8fae45cc64 /rts/PrimOps.cmm | |
parent | 9bf5228fdc1937f44901a945553eea3cb0f14faa (diff) | |
download | haskell-eb191ab6c85f4b668a6e9151dcecaf1f1e7ec7c2.tar.gz |
rts/PrimOps.cmm: follow '_static_closure' update
Caught by UNREG build failure:
rts_dist_HC rts/dist/build/PrimOps.o
/tmp/ghc8613_0/ghc8613_2.hc: In function 'cf8_entry':
/tmp/ghc8613_0/ghc8613_2.hc:1942:13:
error: 'base_ControlziExceptionziBase_nestedAtomically_static_closure' undeclared (first use in this function)
R1.w = (W_)&base_ControlziExceptionziBase_nestedAtomically_static_closure;
^
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'rts/PrimOps.cmm')
-rw-r--r-- | rts/PrimOps.cmm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/PrimOps.cmm b/rts/PrimOps.cmm index eb3ce2805a..a0e744b1ba 100644 --- a/rts/PrimOps.cmm +++ b/rts/PrimOps.cmm @@ -28,7 +28,7 @@ import pthread_mutex_lock; import pthread_mutex_unlock; #endif -import base_ControlziExceptionziBase_nestedAtomically_closure; +import base_ControlziExceptionziBase_nestedAtomically_static_closure; import EnterCriticalSection; import LeaveCriticalSection; import ghczmprim_GHCziTypes_False_static_closure; |