summaryrefslogtreecommitdiff
path: root/compiler/stranal/WorkWrap.lhs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/stranal/WorkWrap.lhs')
-rw-r--r--compiler/stranal/WorkWrap.lhs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/stranal/WorkWrap.lhs b/compiler/stranal/WorkWrap.lhs
index c1e9c48390..c947388d18 100644
--- a/compiler/stranal/WorkWrap.lhs
+++ b/compiler/stranal/WorkWrap.lhs
@@ -110,8 +110,8 @@ wwExpr (Lam binder expr)
wwExpr (App f a)
= App <$> wwExpr f <*> wwExpr a
-wwExpr (Note note expr)
- = Note note <$> wwExpr expr
+wwExpr (Tick note expr)
+ = Tick note <$> wwExpr expr
wwExpr (Cast expr co) = do
new_expr <- wwExpr expr
@@ -379,7 +379,7 @@ get_one_shots :: Expr Var -> [Bool]
get_one_shots (Lam b e)
| isId b = isOneShotLambda b : get_one_shots e
| otherwise = get_one_shots e
-get_one_shots (Note _ e) = get_one_shots e
+get_one_shots (Tick _ e) = get_one_shots e
get_one_shots _ = noOneShotInfo
\end{code}