From: Roman Leshchinskiy Date: Fri, 25 Aug 2006 10:18:46 +0000 (+0000) Subject: Add a default case to pprDynamicLinkerAsmLabel X-Git-Tag: Before_FC_branch_merge~124 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=4caed9c99339c3e7086dbc05e253a456f1b5bbfa;p=ghc-hetmet.git Add a default case to pprDynamicLinkerAsmLabel This is mainly for the benefit of Solaris. I'll fix this properly later. --- diff --git a/compiler/cmm/CLabel.hs b/compiler/cmm/CLabel.hs index b6150e2..a93fba5 100644 --- a/compiler/cmm/CLabel.hs +++ b/compiler/cmm/CLabel.hs @@ -832,4 +832,7 @@ pprDynamicLinkerAsmLabel SymbolPtr lbl = text "__imp_" <> pprCLabel lbl pprDynamicLinkerAsmLabel _ _ = panic "pprDynamicLinkerAsmLabel" +#else +pprDynamicLinkerAsmLabel _ _ + = panic "pprDynamicLinkerAsmLabel" #endif