File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ public SwiftObjectHeader {
154
154
155
155
enum { numCustomBits = std::numeric_limits<CustomBitsType>::digits };
156
156
157
- constexpr static const size_t maxBitfieldID =
157
+ constexpr static const uint64_t maxBitfieldID =
158
158
std::numeric_limits<uint64_t >::max();
159
159
160
160
// / Gets the ID (= index in the function's block list) of the block.
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class alignas(8) SILNode :
128
128
129
129
enum { numCustomBits = 20 };
130
130
131
- constexpr static const size_t maxBitfieldID =
131
+ constexpr static const uint64_t maxBitfieldID =
132
132
std::numeric_limits<uint64_t >::max () >> numCustomBits;
133
133
134
134
protected:
Original file line number Diff line number Diff line change @@ -1033,7 +1033,7 @@ class Operand {
1033
1033
public:
1034
1034
enum { numCustomBits = 8 };
1035
1035
1036
- constexpr static const size_t maxBitfieldID =
1036
+ constexpr static const uint64_t maxBitfieldID =
1037
1037
std::numeric_limits<uint64_t >::max() >> numCustomBits;
1038
1038
1039
1039
private:
You can’t perform that action at this time.
0 commit comments