diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2017-02-04 15:16:10 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-02-04 16:16:50 -0500 |
commit | bd818a7ce0b872fc0b03375c65d55932ada1940d (patch) | |
tree | 74f1e9a5fcd5d41c3d96c2dcd46736638a05d0c3 /mk | |
parent | 68cbe52fd3ae618a9778e79bf6a9806bab21aff2 (diff) | |
download | haskell-bd818a7ce0b872fc0b03375c65d55932ada1940d.tar.gz |
Fix comment (old file names) in mk/ and utils/
There ware some old file names (.lhs, ...) at comments.
* mk/config.mk.in
- compiler/hsSyn/HsExpr.lhs -> HsExpr.hs
* utils/ghc-pkg/Main.hs
- compiler/main/Packages.lhs -> Packages.hs
* utils/genapply/Main.hs
- CgRetConv.lhs -> * REMOVE THIS COMMENT (OLDER FILE THAN GHC6) *
- Constants.lhs -> Constants.hs
- compiler/codeGen/CgCallConv.lhs -> compiler/codeGen/StgCmmLayout.hs
- Apply.hc -> Apply.cmm
- HeapStackCheck.hc -> HeapStackCheck.cmm
Reviewers: mpickering, austin, bgamari
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D3077
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 35ff04cb0e..b90aca3ad9 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -71,9 +71,9 @@ GhcStage2HcOpts=-O2 GhcStage3HcOpts=-O2 # Disable -O2 optimization. Otherwise amount of generated C code -# makes things very slow to compile (~5 minutes on core-i7 for 'compiler/hsSyn/HsExpr.lhs') +# makes things very slow to compile (~5 minutes on core-i7 for 'compiler/hsSyn/HsExpr.hs') # and sometimes not compile at all (powerpc64 overflows something -# on 'compiler/hsSyn/HsExpr.lhs'). +# on 'compiler/hsSyn/HsExpr.hs'). ifeq "$(GhcUnregisterised)" "YES" GhcStage1HcOpts= GhcStage2HcOpts= |