summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2006-09-10 14:15:06 +0000
committerIan Lynagh <igloo@earth.li>2006-09-10 14:15:06 +0000
commit2ab19ae554db9b9370bb31ba9cf9a5e53661df38 (patch)
tree26c5ff1c53a622810df2b922442943c122740809 /compiler
parent7b8830c8da4373a5e9587660b0383317a84d6a6e (diff)
downloadhaskell-2ab19ae554db9b9370bb31ba9cf9a5e53661df38.tar.gz
Fix linking to expf on Windows
Diffstat (limited to 'compiler')
-rw-r--r--compiler/nativeGen/MachCodeGen.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/MachCodeGen.hs b/compiler/nativeGen/MachCodeGen.hs
index 18cb086f79..1e88867f66 100644
--- a/compiler/nativeGen/MachCodeGen.hs
+++ b/compiler/nativeGen/MachCodeGen.hs
@@ -3082,7 +3082,7 @@ outOfLineFloatOp mop res args vols
code2 <- stmtToInstrs (CmmAssign res (CmmReg tmp))
return (code1 `appOL` code2)
where
- lbl = mkForeignLabel fn Nothing True
+ lbl = mkForeignLabel fn Nothing False
fn = case mop of
MO_F32_Sqrt -> FSLIT("sqrtf")