diff options
Diffstat (limited to 'compiler/codeGen/StgCmmExpr.hs')
-rw-r--r-- | compiler/codeGen/StgCmmExpr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/StgCmmExpr.hs b/compiler/codeGen/StgCmmExpr.hs index bbb5937240..00c6068fb0 100644 --- a/compiler/codeGen/StgCmmExpr.hs +++ b/compiler/codeGen/StgCmmExpr.hs @@ -323,7 +323,7 @@ This special case handles code like --> case tagToEnum# (a <$# b) of True -> .. ; False -> ... ---> case (a <$# b) of r -> +--> case (a <$# b) of r -> case tagToEnum# r of True -> .. ; False -> ... |