Skip to content
Snippets Groups Projects
Commit a31a5772 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-01-15 15:06:20 by simonm]

Remove punning.
parent a92b6e47
No related branches found
No related tags found
No related merge requests found
...@@ -112,20 +112,18 @@ noIdInfo = IdInfo { ...@@ -112,20 +112,18 @@ noIdInfo = IdInfo {
\begin{code} \begin{code}
ppIdInfo :: IdInfo -> SDoc ppIdInfo :: IdInfo -> SDoc
ppIdInfo (IdInfo {arityInfo, ppIdInfo (IdInfo {arityInfo = a,
demandInfo, demandInfo = d,
specInfo, strictnessInfo = s,
strictnessInfo, updateInfo = u,
unfoldingInfo, cafInfo = c
updateInfo, })
cafInfo,
inlinePragInfo})
= hsep [ = hsep [
ppArityInfo arityInfo, ppArityInfo a,
ppUpdateInfo updateInfo, ppUpdateInfo u,
ppStrictnessInfo strictnessInfo, ppStrictnessInfo s,
ppr demandInfo, ppr d,
ppCafInfo cafInfo ppCafInfo c
-- Inline pragma printed out with all binders; see PprCore.pprIdBndr -- Inline pragma printed out with all binders; see PprCore.pprIdBndr
] ]
\end{code} \end{code}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment