diff options
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Disassembler.c | 2 | ||||
-rw-r--r-- | rts/PrimOps.cmm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rts/Disassembler.c b/rts/Disassembler.c index 01d6c3b1d9..d5593c8a07 100644 --- a/rts/Disassembler.c +++ b/rts/Disassembler.c @@ -324,7 +324,7 @@ disInstr ( StgBCO *bco, int pc ) /* Something of a kludge .. how do we know where the end of the insn array is, since it isn't recorded anywhere? Answer: the first short is the number of bytecodes which follow it. - See ByteCodeGen.linkBCO.insns_arr for construction ... + See GHC.CoreToByteCode.linkBCO.insns_arr for construction ... */ void disassemble( StgBCO *bco ) { diff --git a/rts/PrimOps.cmm b/rts/PrimOps.cmm index 78a958d5ec..e1f6fab93a 100644 --- a/rts/PrimOps.cmm +++ b/rts/PrimOps.cmm @@ -2109,7 +2109,7 @@ stg_mkApUpd0zh ( P_ bco ) W_ ap; // This function is *only* used to wrap zero-arity BCOs in an - // updatable wrapper (see ByteCodeLink.hs). An AP thunk is always + // updatable wrapper (see GHC.ByteCode.Linker). An AP thunk is always // saturated and always points directly to a FUN or BCO. ASSERT(%INFO_TYPE(%GET_STD_INFO(bco)) == HALF_W_(BCO) && StgBCO_arity(bco) == HALF_W_(0)); |