X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2FdeSugar%2FDsExpr.lhs;h=bce1b1da9fe74ecde03c5b4fbb06f8e26d01c880;hb=de896403dfe48bc999e5501eb8b517624dd2e5d4;hp=036fea87ca37599018a777a178fef71eb7beb415;hpb=54e6a4e1fc2313e5462973d8988b714efd6ab9e5;p=ghc-hetmet.git diff --git a/ghc/compiler/deSugar/DsExpr.lhs b/ghc/compiler/deSugar/DsExpr.lhs index 036fea8..bce1b1d 100644 --- a/ghc/compiler/deSugar/DsExpr.lhs +++ b/ghc/compiler/deSugar/DsExpr.lhs @@ -296,8 +296,8 @@ dsExpr (CCall lbl args may_gc is_asm result_ty) dsExpr (HsSCC cc expr) = dsExpr expr `thenDs` \ core_expr -> - getModuleAndGroupDs `thenDs` \ (mod_name, group_name) -> - returnDs (Note (SCC (mkUserCC cc mod_name group_name)) core_expr) + getModuleDs `thenDs` \ mod_name -> + returnDs (Note (SCC (mkUserCC cc mod_name)) core_expr) -- special case to handle unboxed tuple patterns.