r298022 - Remove setting LessPreciseFPMADOption on the TargetOption as it's

Eric Christopher via cfe-commits cfe-commits at lists.llvm.org
Thu Mar 16 17:37:54 PDT 2017


Author: echristo
Date: Thu Mar 16 19:37:53 2017
New Revision: 298022

URL: http://llvm.org/viewvc/llvm-project?rev=298022&view=rev
Log:
Remove setting LessPreciseFPMADOption on the TargetOption as it's
unused anywhere in llvm.

Modified:
    cfe/trunk/lib/CodeGen/BackendUtil.cpp

Modified: cfe/trunk/lib/CodeGen/BackendUtil.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/BackendUtil.cpp?rev=298022&r1=298021&r2=298022&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/BackendUtil.cpp (original)
+++ cfe/trunk/lib/CodeGen/BackendUtil.cpp Thu Mar 16 19:37:53 2017
@@ -583,7 +583,6 @@ void EmitAssemblyHelper::CreateTargetMac
   if (LangOpts.SjLjExceptions)
     Options.ExceptionModel = llvm::ExceptionHandling::SjLj;
 
-  Options.LessPreciseFPMADOption = CodeGenOpts.LessPreciseFPMAD;
   Options.NoInfsFPMath = CodeGenOpts.NoInfsFPMath;
   Options.NoNaNsFPMath = CodeGenOpts.NoNaNsFPMath;
   Options.NoZerosInBSS = CodeGenOpts.NoZeroInitializedInBSS;




More information about the cfe-commits mailing list