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

[project @ 1999-06-03 14:44:23 by simonmar]

When not profiling,  parse   `_scc_ "string" e'  as `(e)', not just `e'.

Rationale:  scc expressions are defined as extending as far to the
right as possible, and if we simply remove the _scc_ part the parse
looks awfully strange to the renamer which tends to fall over.
parent 6a9b9708
No related branches found
No related tags found
No related merge requests found
{- {-
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
$Id: Parser.y,v 1.4 1999/06/02 16:05:56 simonmar Exp $ $Id: Parser.y,v 1.5 1999/06/03 14:44:23 simonmar Exp $
Haskell grammar. Haskell grammar.
...@@ -633,7 +633,7 @@ exp10 :: { RdrNameHsExpr } ...@@ -633,7 +633,7 @@ exp10 :: { RdrNameHsExpr }
| '_scc_' STRING exp { if opt_SccProfilingOn | '_scc_' STRING exp { if opt_SccProfilingOn
then HsSCC $2 $3 then HsSCC $2 $3
else $3 } else HsPar $3 }
| fexp { $1 } | fexp { $1 }
......
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