summaryrefslogtreecommitdiff
path: root/compiler/codeGen/StgCmm.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/codeGen/StgCmm.hs')
-rw-r--r--compiler/codeGen/StgCmm.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/codeGen/StgCmm.hs b/compiler/codeGen/StgCmm.hs
index d82b4bc3b1..d8127ab737 100644
--- a/compiler/codeGen/StgCmm.hs
+++ b/compiler/codeGen/StgCmm.hs
@@ -52,7 +52,7 @@ import OrdList
import MkGraph
import Data.IORef
-import Control.Monad (when)
+import Control.Monad (when,void)
import Util
codeGen :: DynFlags
@@ -244,9 +244,9 @@ cgDataCon data_con
do { _ <- ticky_code
; ldvEnter (CmmReg nodeReg)
; tickyReturnOldCon (length arg_things)
- ; _ <- emitReturn [cmmOffsetB (CmmReg nodeReg)
+ ; void $ emitReturn [cmmOffsetB (CmmReg nodeReg)
(tagForCon data_con)]
- ; return () }
+ }
-- The case continuation code expects a tagged pointer
arg_reps :: [(PrimRep, UnaryType)]