[llvm] Hexagon: Move RuntimeLibcall setting out of TargetLowering (PR #142543)

Brian Cain via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 5 18:47:41 PDT 2025


================
@@ -7,10 +7,15 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/IR/RuntimeLibcalls.h"
+#include "llvm/Support/CommandLine.h"
 
 using namespace llvm;
 using namespace RTLIB;
 
+static cl::opt<bool>
+    HexagonEnableFastMathRuntimeCalls("hexagon-fast-math", cl::Hidden,
+                                      cl::desc("Enable Fast Math processing"));
----------------
androm3da wrote:

Does this PR change the command line used for this option?

If so, I suppose it should get a mention in the release notes.

https://github.com/llvm/llvm-project/pull/142543


More information about the llvm-commits mailing list