diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2017-02-04 10:24:55 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2017-02-04 10:27:23 +0000 |
commit | 8d60d739489b2f5108b1786a3c2075e2a6062a6b (patch) | |
tree | 078a410f9966eccbbdb386845e519fc34540bdce /compiler | |
parent | 31bb85ffc4b68b5e2625ae374822ab8e8548eecc (diff) | |
download | haskell-8d60d739489b2f5108b1786a3c2075e2a6062a6b.tar.gz |
Fix comment (old file names) in compiler/
[skip ci]
There ware some old file names (.lhs, ...) at comments.
* compiler/ghc.mk
- prelude/PrimOp.lhs -> prelude/PrimOp.hs
* compiler/parser/cutils.h
- PrimPacked.lhs -> compiler/utils/FastString.hs
Reviewers: bgamari, austin
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D3076
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/ghc.mk | 2 | ||||
-rw-r--r-- | compiler/parser/cutils.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/ghc.mk b/compiler/ghc.mk index df16483466..ce41eca052 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -233,7 +233,7 @@ compiler/stage3/$(PLATFORM_H) : compiler/stage2/$(PLATFORM_H) "$(CP)" $< $@ # ---------------------------------------------------------------------------- -# Generate supporting stuff for prelude/PrimOp.lhs +# Generate supporting stuff for prelude/PrimOp.hs # from prelude/primops.txt PRIMOP_BITS_NAMES = primop-data-decl.hs-incl \ diff --git a/compiler/parser/cutils.h b/compiler/parser/cutils.h index 95a10c59f9..0c8ab12a2c 100644 --- a/compiler/parser/cutils.h +++ b/compiler/parser/cutils.h @@ -6,7 +6,7 @@ #include "HsFFI.h" -// Out-of-line string functions, see PrimPacked.lhs +// Out-of-line string functions, see compiler/utils/FastString.hs HsInt ghc_strlen( HsAddr a ); HsInt ghc_memcmp( HsAddr a1, HsAddr a2, HsInt len ); |