summaryrefslogtreecommitdiff
path: root/rts/PrimOps.cmm
diff options
context:
space:
mode:
authorTakenobu Tani <takenobu.hs@gmail.com>2017-02-04 10:24:49 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2017-02-04 10:27:01 +0000
commit31bb85ffc4b68b5e2625ae374822ab8e8548eecc (patch)
tree41a01695dc4b9632ba2aa9de85bbe64680a08972 /rts/PrimOps.cmm
parent9984024a58a277fad23efd09df0ab51cdd39a87a (diff)
downloadhaskell-31bb85ffc4b68b5e2625ae374822ab8e8548eecc.tar.gz
Fix comment (old file names) in rts/
[skip ci] There ware some old file names (.lhs, ...) at comments. * rts/win32/ThrIOManager.c - Conc.lhs -> Conc.hs * rts/PrimOps.cmm - ByteCodeLink.lhs -> ByteCodeLink.hs - StgMiscClosures.hc -> StgMiscClosures.cmm * rts/AutoApply.h - AutoApply.hc -> AutoApply.cmm * rts/HeapStackCheck.cmm - PrimOps.hc -> PrimOps.cmm * rts/LdvProfile.h - Updates.hc -> Updates.cmm * rts/Schedule.c - StgStartup.hc -> StgStartup.cmm * rts/Weak.c - StgMiscClosures.hc -> StgMiscClosures.cmm Reviewers: bgamari, austin, erikd, simonmar Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D3075
Diffstat (limited to 'rts/PrimOps.cmm')
-rw-r--r--rts/PrimOps.cmm4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/PrimOps.cmm b/rts/PrimOps.cmm
index d6cdb3d535..4baf63a8f7 100644
--- a/rts/PrimOps.cmm
+++ b/rts/PrimOps.cmm
@@ -723,7 +723,7 @@ stg_finalizzeWeakzh ( gcptr w )
// LDV_recordDead((StgClosure *)w, sizeofW(StgWeak) - sizeofW(StgProfHeader));
// Furthermore, when PROFILING is turned on, dead weak pointers are exactly as
// large as weak pointers, so there is no need to fill the slop, either.
- // See stg_DEAD_WEAK_info in StgMiscClosures.hc.
+ // See stg_DEAD_WEAK_info in StgMiscClosures.cmm.
#endif
//
@@ -1968,7 +1968,7 @@ stg_mkApUpd0zh ( P_ bco )
W_ ap;
// This function is *only* used to wrap zero-arity BCOs in an
- // updatable wrapper (see ByteCodeLink.lhs). An AP thunk is always
+ // updatable wrapper (see ByteCodeLink.hs). 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));