File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
compiler-rt/include/profile
llvm/include/llvm/ProfileData Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ constexpr int ExponentBits = 4;
233
233
constexpr uint16_t MaxMantissa = (1U << MantissaBits) - 1 ;
234
234
constexpr uint16_t MaxExponent = (1U << ExponentBits) - 1 ;
235
235
constexpr uint64_t MaxRepresentableValue = static_cast <uint64_t >(MaxMantissa)
236
- << MaxExponent;
236
+ << MaxExponent;
237
237
238
238
// Encodes a 64-bit unsigned integer into a 16-bit scaled integer format.
239
239
inline uint16_t encodeHistogramCount (uint64_t Count) {
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ constexpr int ExponentBits = 4;
233
233
constexpr uint16_t MaxMantissa = (1U << MantissaBits) - 1 ;
234
234
constexpr uint16_t MaxExponent = (1U << ExponentBits) - 1 ;
235
235
constexpr uint64_t MaxRepresentableValue = static_cast <uint64_t >(MaxMantissa)
236
- << MaxExponent;
236
+ << MaxExponent;
237
237
238
238
// Encodes a 64-bit unsigned integer into a 16-bit scaled integer format.
239
239
inline uint16_t encodeHistogramCount (uint64_t Count) {
You can’t perform that action at this time.
0 commit comments