diff options
author | Ian Lynagh <igloo@earth.li> | 2008-03-23 18:25:57 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-03-23 18:25:57 +0000 |
commit | fcf6b22d0478be20e27c2245f3e34dd272e12522 (patch) | |
tree | 7b33e0ecfddef9bd27f963b13e332baca0ae4db4 /rts/Exception.cmm | |
parent | 7f0471be1cfe0ef6110ef7fdd8132d85387d0b21 (diff) | |
download | haskell-fcf6b22d0478be20e27c2245f3e34dd272e12522.tar.gz |
Follow library changes
Integer, Bool and Unit/Inl/Inr are now in new packages integer
and ghc-prim.
Diffstat (limited to 'rts/Exception.cmm')
-rw-r--r-- | rts/Exception.cmm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/Exception.cmm b/rts/Exception.cmm index 39a2abad9a..c2f0dde675 100644 --- a/rts/Exception.cmm +++ b/rts/Exception.cmm @@ -14,7 +14,7 @@ #include "RaiseAsync.h" #ifdef __PIC__ -import base_GHCziBase_True_closure; +import ghczmprim_GHCziBool_True_closure; #endif /* ----------------------------------------------------------------------------- @@ -440,8 +440,8 @@ retry_pop_stack: Sp(5) = stg_raise_ret_info; Sp(4) = stg_noforceIO_info; // required for unregisterised Sp(3) = exception; // the AP_STACK - Sp(2) = base_GHCziBase_True_closure; // dummy breakpoint info - Sp(1) = base_GHCziBase_True_closure; // True <=> a breakpoint + Sp(2) = ghczmprim_GHCziBool_True_closure; // dummy breakpoint info + Sp(1) = ghczmprim_GHCziBool_True_closure; // True <=> a breakpoint R1 = ioAction; jump RET_LBL(stg_ap_pppv); } |