[llvm] RuntimeLibcalls: Add bitset for available libcalls (PR #150869)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 4 09:44:32 PDT 2025
================
@@ -401,7 +402,13 @@ void RuntimeLibcallEmitter::emitSystemRuntimeLibrarySetCalls(
PredicateSorter.insert(
PredicateWithCC()); // No predicate or CC override first.
+ constexpr unsigned BitsPerStorageElt = sizeof(uintptr_t) * CHAR_BIT;
----------------
arsenm wrote:
I'm not sure there's a ready made way to figure out what the generated target is from here. I guess it would be easier to make the Bitset underlying type configurable to always use uint64_t
https://github.com/llvm/llvm-project/pull/150869
More information about the llvm-commits
mailing list