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

[project @ 2000-05-25 10:40:39 by simonmar]

Add missing case in parsing of inline pragmas.
parent b537743d
No related merge requests found
......@@ -681,6 +681,7 @@ id_info_item :: { HsIdInfo RdrName }
inline_prag :: { InlinePragInfo }
: {- empty -} { NoInlinePragInfo }
| '[' INTEGER ']' { IMustNotBeINLINEd True (Just (fromInteger $2)) } -- INLINE n
| '[' '!' ']' { IMustNotBeINLINEd True Nothing } -- NOTINLINE
| '[' '!' INTEGER ']' { IMustNotBeINLINEd False (Just (fromInteger $3)) } -- NOINLINE n
-------------------------------------------------------
......
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