diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2017-02-04 10:24:42 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2017-02-04 10:26:36 +0000 |
commit | 9984024a58a277fad23efd09df0ab51cdd39a87a (patch) | |
tree | a164ac9fc5cffcb2c21a0fc46de4068fd2cb0ef4 /includes/stg | |
parent | 2f5cb3d44d05e581b75a47fec222577dfa7a533e (diff) | |
download | haskell-9984024a58a277fad23efd09df0ab51cdd39a87a.tar.gz |
Fix comment (old file names) in includes/
[skip ci]
There ware some old file names (.lhs, ...) at comments.
* includes/rts/Bytecodes.h
- ghc/compiler/ghci/ByteCodeGen.lhs -> ByteCodeAsm.hs
* includes/rts/Constants.h
- libraries/base/GHC/Conc.lhs -> libraries/base/GHC/Conc/Sync.hs
* includes/rts/storage/FunTypes.h
- utils/genapply/GenApply.hs -> utils/genappl/Main.hs
- compiler/codeGen/CgCallConv.lhs -> compiler/codeGen/StgCmmLayout.hs
* includes/stg/MiscClosures.h
- compiler/codeGen/CgStackery.lhs -> compiler/codeGen/StgCmmArgRep.hs
- HeapStackCheck.hc -> HeapStackCheck.cmm
Reviewers: bgamari, austin, simonmar, erikd
Reviewed By: erikd
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D3074
Diffstat (limited to 'includes/stg')
-rw-r--r-- | includes/stg/MiscClosures.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/stg/MiscClosures.h b/includes/stg/MiscClosures.h index 994b369c46..8894535dd6 100644 --- a/includes/stg/MiscClosures.h +++ b/includes/stg/MiscClosures.h @@ -232,7 +232,7 @@ RTS_THUNK(stg_ap_6_upd); RTS_THUNK(stg_ap_7_upd); /* standard application routines (see also utils/genapply, - * and compiler/codeGen/CgStackery.lhs). + * and compiler/codeGen/StgCmmArgRep.hs). */ RTS_RET(stg_ap_v); RTS_RET(stg_ap_f); @@ -272,7 +272,7 @@ RTS_FUN_DECL(stg_ap_ppppp_fast); RTS_FUN_DECL(stg_ap_pppppp_fast); RTS_FUN_DECL(stg_PAP_apply); -/* standard GC & stack check entry points, all defined in HeapStackCheck.hc */ +/* standard GC & stack check entry points, all defined in HeapStackCheck.cmm */ RTS_FUN_DECL(stg_gc_noregs); |