Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
f672e79d
Commit
f672e79d
authored
Jul 03, 2007
by
Simon Marlow
Browse files
pprTypeInfo: print slow entry pt
parent
ae53d47b
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/cmm/PprCmm.hs
View file @
f672e79d
...
...
@@ -153,9 +153,9 @@ pprTypeInfo (FunInfo layout srt fun_type arity args slow_entry) =
ptext
SLIT
(
"nptrs: "
)
<>
integer
(
toInteger
(
snd
layout
)),
ptext
SLIT
(
"srt: "
)
<>
ppr
srt
,
ptext
SLIT
(
"fun_type: "
)
<>
integer
(
toInteger
fun_type
),
ptext
SLIT
(
"arity: "
)
<>
integer
(
toInteger
arity
)
ptext
SLIT
(
"arity: "
)
<>
integer
(
toInteger
arity
)
,
--ppr args, -- TODO: needs to be printed
--ppr slow_entry -- TODO: needs to be printed
ptext
SLIT
(
"slow: "
)
<>
pprLit
slow_entry
]
pprTypeInfo
(
ThunkInfo
layout
srt
)
=
vcat
[
ptext
SLIT
(
"ptrs: "
)
<>
integer
(
toInteger
(
fst
layout
)),
...
...
Write
Preview
Supports
Markdown
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