Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
250d897e
Commit
250d897e
authored
Jan 18, 2001
by
simonmar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[project @ 2001-01-18 17:19:26 by simonmar]
_scc_'s for the NCG
parent
92f0ce9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
ghc/compiler/main/CodeOutput.lhs
ghc/compiler/main/CodeOutput.lhs
+3
-2
No files found.
ghc/compiler/main/CodeOutput.lhs
View file @
250d897e
...
...
@@ -110,10 +110,11 @@ outputAsm dflags filenm flat_absC
#ifndef OMIT_NATIVE_CODEGEN
= do ncg_uniqs <- mkSplitUniqSupply 'n'
let (stix_final, ncg_output_d) = nativeCodeGen flat_absC ncg_uniqs
let (stix_final, ncg_output_d) = _scc_ "NativeCodeGen"
nativeCodeGen flat_absC ncg_uniqs
dumpIfSet_dyn dflags Opt_D_dump_stix "Final stix code" stix_final
dumpIfSet_dyn dflags Opt_D_dump_asm "Asm code" ncg_output_d
doOutput filenm ( \f -> printForAsm f ncg_output_d)
_scc_ "OutputAsm"
doOutput filenm ( \f -> printForAsm f ncg_output_d)
where
#else /* OMIT_NATIVE_CODEGEN */
...
...
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