From 645a4da831717e38bb65ff14223e669c1d157cdb Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Thu, 29 Nov 2018 21:50:18 +0000 Subject: [PATCH] - removed "-enable-fp-mad" llc option, as it's not supported for all versions git-svn-id: branches/debug_eh@40420 - --- compiler/llvm/agllvm.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/llvm/agllvm.pas b/compiler/llvm/agllvm.pas index d836009738..30af7ab08e 100644 --- a/compiler/llvm/agllvm.pas +++ b/compiler/llvm/agllvm.pas @@ -789,7 +789,7 @@ implementation optstr:=optstr+' -disable-fp-elim'; { fast math } if cs_opt_fastmath in current_settings.optimizerswitches then - optstr:=optstr+' -enable-unsafe-fp-math -enable-fp-mad -fp-contract=fast'; + optstr:=optstr+' -enable-unsafe-fp-math -fp-contract=fast'; { -enable-fp-mad support depends on version } { smart linking } if cs_create_smart in current_settings.moduleswitches then optstr:=optstr+' -data-sections -function-sections';