Skip to content

Commit f38dc22

Browse files
committed
Adjust for always-uint64_t bitset constructor
1 parent 2e293e6 commit f38dc22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/IR/RuntimeLibcalls.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class LibcallImplBitset : public Bitset<RTLIB::NumLibcallImpls> {
6060
public:
6161
constexpr LibcallImplBitset() = default;
6262
constexpr LibcallImplBitset(
63-
const Bitset<RTLIB::NumLibcallImpls>::StorageType &Src)
63+
const std::array<uint64_t, (RTLIB::NumLibcallImpls + 63) / 64> &Src)
6464
: Bitset(Src) {}
6565
};
6666

0 commit comments

Comments
 (0)