summaryrefslogtreecommitdiff
path: root/compiler/simplStg/StgStats.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/simplStg/StgStats.hs')
-rw-r--r--compiler/simplStg/StgStats.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/simplStg/StgStats.hs b/compiler/simplStg/StgStats.hs
index a2a9a8530f..05a0cf988a 100644
--- a/compiler/simplStg/StgStats.hs
+++ b/compiler/simplStg/StgStats.hs
@@ -153,12 +153,12 @@ statExpr (StgConApp _ _ _)= countOne ConstructorApps
statExpr (StgOpApp _ _ _) = countOne PrimitiveApps
statExpr (StgTick _ e) = statExpr e
-statExpr (StgLetNoEscape binds body)
+statExpr (StgLetNoEscape _ binds body)
= statBinding False{-not top-level-} binds `combineSE`
statExpr body `combineSE`
countOne LetNoEscapes
-statExpr (StgLet binds body)
+statExpr (StgLet _ binds body)
= statBinding False{-not top-level-} binds `combineSE`
statExpr body