We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e293e6 commit f38dc22Copy full SHA for f38dc22
llvm/include/llvm/IR/RuntimeLibcalls.h
@@ -60,7 +60,7 @@ class LibcallImplBitset : public Bitset<RTLIB::NumLibcallImpls> {
60
public:
61
constexpr LibcallImplBitset() = default;
62
constexpr LibcallImplBitset(
63
- const Bitset<RTLIB::NumLibcallImpls>::StorageType &Src)
+ const std::array<uint64_t, (RTLIB::NumLibcallImpls + 63) / 64> &Src)
64
: Bitset(Src) {}
65
};
66
0 commit comments