From 2ab19ae554db9b9370bb31ba9cf9a5e53661df38 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sun, 10 Sep 2006 14:15:06 +0000 Subject: [PATCH] Fix linking to expf on Windows --- compiler/nativeGen/MachCodeGen.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/nativeGen/MachCodeGen.hs b/compiler/nativeGen/MachCodeGen.hs index 18cb086..1e88867 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") -- 1.7.10.4