diff options
Diffstat (limited to 'compiler/coreSyn/CoreSyn.lhs')
-rw-r--r-- | compiler/coreSyn/CoreSyn.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/coreSyn/CoreSyn.lhs b/compiler/coreSyn/CoreSyn.lhs index e754c6dda5..79c0d7e092 100644 --- a/compiler/coreSyn/CoreSyn.lhs +++ b/compiler/coreSyn/CoreSyn.lhs @@ -821,7 +821,7 @@ cmpAltCon (DataAlt _) DEFAULT = GT cmpAltCon (LitAlt l1) (LitAlt l2) = l1 `compare` l2 cmpAltCon (LitAlt _) DEFAULT = GT -cmpAltCon con1 con2 = WARN( True, text "Comparing incomparable AltCons" <+> +cmpAltCon con1 con2 = WARN( dflags, True, text "Comparing incomparable AltCons" <+> ppr con1 <+> ppr con2 ) LT \end{code} |