Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
a7d8074d
Commit
a7d8074d
authored
Feb 07, 2009
by
Ian Lynagh
Browse files
Correct an IsFunction that should be IsData
parent
8fd6a1ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/cmm/CmmParse.y
View file @
a7d8074d
...
...
@@ -203,7 +203,7 @@ static :: { ExtFCode [CmmStatic] }
| 'CLOSURE' '(' NAME lits ')'
{ do lits <- sequence $4;
return $ map CmmStaticLit $
mkStaticClosure (mkForeignLabel $3 Nothing True Is
Function
)
mkStaticClosure (mkForeignLabel $3 Nothing True Is
Data
)
-- mkForeignLabel because these are only used
-- for CHARLIKE and INTLIKE closures in the RTS.
dontCareCCS (map getLit lits) [] [] [] }
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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