diff options
author | Ian Lynagh <igloo@earth.li> | 2010-10-23 16:54:22 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-10-23 16:54:22 +0000 |
commit | 28cb2d6d40264796fb84da1f352490fd2b8eb27f (patch) | |
tree | dad732659400989ce4f498b5b1d4098f5a22aafd /compiler/codeGen | |
parent | c91279a1e4fd631d42ad903eaf699a96c22f380e (diff) | |
download | haskell-28cb2d6d40264796fb84da1f352490fd2b8eb27f.tar.gz |
Follow GHC.Bool/GHC.Types merge
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/StgCmmExpr.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/codeGen/StgCmmExpr.hs b/compiler/codeGen/StgCmmExpr.hs index 50d500bc8c..30e442b273 100644 --- a/compiler/codeGen/StgCmmExpr.hs +++ b/compiler/codeGen/StgCmmExpr.hs @@ -550,8 +550,8 @@ if the assignment to the binder will be dead code (use isDeadBndr). The following example illustrates how badly the code turns out: STG: case <=## [ww_s7Hx y_s7HD] of wild2_sbH8 { - GHC.Bool.False -> <true code> // sbH8 dead - GHC.Bool.True -> <false code> // sbH8 dead + GHC.Types.False -> <true code> // sbH8 dead + GHC.Types.True -> <false code> // sbH8 dead }; Cmm: _s7HD::F64 = F64[_sbH7::I64 + 7]; // MidAssign |