diff options
author | Roman Leshchinskiy <rl@cse.unsw.edu.au> | 2006-08-25 10:18:46 +0000 |
---|---|---|
committer | Roman Leshchinskiy <rl@cse.unsw.edu.au> | 2006-08-25 10:18:46 +0000 |
commit | 4caed9c99339c3e7086dbc05e253a456f1b5bbfa (patch) | |
tree | df67626d3b3de65a55d29644810d9960c5f86821 /compiler | |
parent | 1b027be4211410cd393b146b365e5224d567b302 (diff) | |
download | haskell-4caed9c99339c3e7086dbc05e253a456f1b5bbfa.tar.gz |
Add a default case to pprDynamicLinkerAsmLabel
This is mainly for the benefit of Solaris. I'll fix this properly later.
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/cmm/CLabel.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/cmm/CLabel.hs b/compiler/cmm/CLabel.hs index b6150e29f8..a93fba5541 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 |