[llvm] RuntimeLibcalls: Add bitset for available libcalls (PR #150869)
Sergei Barannikov via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 4 06:46:37 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;
----------------
s-barannikov wrote:
When cross-building the compiler, TableGen is build for and runs on host, but the compiler will run on target, which may have different uintptr_t.
https://github.com/llvm/llvm-project/pull/150869
More information about the llvm-commits
mailing list