Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
15696682
Commit
15696682
authored
Oct 24, 2017
by
Gabor Greif
💬
Browse files
Typofixes in comments
parent
ec356e8a
Changes
3
Hide whitespace changes
Inline
Side-by-side
compiler/main/DriverPipeline.hs
View file @
15696682
...
...
@@ -794,7 +794,7 @@ getOutputFilename stop_phase output basename dflags next_phase maybe_location
-- | The fast LLVM Pipeline skips the mangler and assembler,
-- emiting object code dirctly from llc.
-- emit
t
ing object code dir
e
ctly from llc.
--
-- slow: opt -> llc -> .s -> mangler -> as -> .o
-- fast: opt -> llc -> .o
...
...
compiler/main/HscMain.hs
View file @
15696682
...
...
@@ -533,7 +533,7 @@ makeSimpleDetails hsc_env tc_result = mkBootModDetailsTc hsc_env tc_result
--------------------------------
It's the task of the compilation proper to compile Haskell, hs-boot and core
files to either byte-code, hard-code (C, asm, LLVM, e
c
t) or to nothing at all
files to either byte-code, hard-code (C, asm, LLVM, et
c.
) or to nothing at all
(the module is still parsed and type-checked. This feature is mostly used by
IDE's and the likes). Compilation can happen in either 'one-shot', 'batch',
'nothing', or 'interactive' mode. 'One-shot' mode targets hard-code, 'batch'
...
...
compiler/typecheck/TcRnTypes.hs
View file @
15696682
...
...
@@ -10,7 +10,7 @@ module.
All the monads exported here are built on top of the same IOEnv monad. The
monad functions like a Reader monad in the way it passes the environment
around. This is done to allow the environment to be manipulated in a stack
like fashion when entering expressions... e
c
t.
like fashion when entering expressions... et
c
.
For state that is global and should be returned at the end (e.g not part
of the stack mechanism), you should use a TcRef (= IORef) to store them.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment