[llvm-branch-commits] [llvm] DAG: Move soft float predicate management into RuntimeLibcalls (PR #142905)

Craig Topper via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Jun 5 11:14:09 PDT 2025


================
@@ -11,12 +11,48 @@
 using namespace llvm;
 using namespace RTLIB;
 
+void RuntimeLibcallsInfo::initSoftFloatCmpLibcallPredicates() {
+  std::fill(SoftFloatCompareLibcallPredicates,
----------------
topperc wrote:

Should we be using `std::begin(SoftFloatCompareLibcallPredicates)` and `std::end(SoftFloatCompareLibcallPredicates)` rather than repeating the size?

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


More information about the llvm-branch-commits mailing list