summaryrefslogtreecommitdiff
path: root/compiler/codeGen
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2012-07-05 13:23:21 +0100
committerSimon Marlow <marlowsd@gmail.com>2012-07-05 13:23:21 +0100
commitbfbdbcb9c4fc7608c6eb6d3d1c645bfb501ecf0a (patch)
treea16feb6524e5961890bfff4e53e6fdbe2a91784c /compiler/codeGen
parent3f0afabaf3e862d986279dc041b14b61e73f86d3 (diff)
downloadhaskell-bfbdbcb9c4fc7608c6eb6d3d1c645bfb501ecf0a.tar.gz
Remove "fuel", adapt to Hoopl changes, fix warnings
Diffstat (limited to 'compiler/codeGen')
-rw-r--r--compiler/codeGen/StgCmmExpr.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/StgCmmExpr.hs b/compiler/codeGen/StgCmmExpr.hs
index 4db1dffdfc..68bfb6d9fe 100644
--- a/compiler/codeGen/StgCmmExpr.hs
+++ b/compiler/codeGen/StgCmmExpr.hs
@@ -572,7 +572,7 @@ cgAltRhss gc_plan retry_lbl bndr alts
; return con }
maybeAltHeapCheck :: GcPlan -> Maybe BlockId -> FCode a -> FCode a
-maybeAltHeapCheck NoGcInAlts mlbl code = code
+maybeAltHeapCheck NoGcInAlts _ code = code
maybeAltHeapCheck (GcInAlts regs) mlbl code =
case mlbl of
Nothing -> altHeapCheck regs code