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
Glasgow Haskell Compiler
GHC
Commits
9cb332c0
Commit
9cb332c0
authored
Feb 13, 2008
by
Ian Lynagh
Browse files
seq what we actually want to seq, not the seq'ing function
parent
d8b4de23
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/coreSyn/PprCore.lhs
View file @
9cb332c0
...
...
@@ -292,7 +292,7 @@ pprTyVarBndr tyvar
pprIdBndr id = ppr id <+> pprIdBndrInfo (idInfo id)
pprIdBndrInfo info
= megaSeqIdInfo `seq` doc -- The seq is useful for poking on black holes
= megaSeqIdInfo
info
`seq` doc -- The seq is useful for poking on black holes
where
prag_info = inlinePragInfo info
occ_info = occInfo info
...
...
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