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;
233233constexpr uint16_t MaxMantissa = (1U << MantissaBits) - 1 ;
234234constexpr uint16_t MaxExponent = (1U << ExponentBits) - 1 ;
235235constexpr uint64_t MaxRepresentableValue = static_cast <uint64_t >(MaxMantissa)
236- << MaxExponent;
236+ << MaxExponent;
237237
238238// Encodes a 64-bit unsigned integer into a 16-bit scaled integer format.
239239inline uint16_t encodeHistogramCount (uint64_t Count) {
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ constexpr int ExponentBits = 4;
233233constexpr uint16_t MaxMantissa = (1U << MantissaBits) - 1 ;
234234constexpr uint16_t MaxExponent = (1U << ExponentBits) - 1 ;
235235constexpr uint64_t MaxRepresentableValue = static_cast <uint64_t >(MaxMantissa)
236- << MaxExponent;
236+ << MaxExponent;
237237
238238// Encodes a 64-bit unsigned integer into a 16-bit scaled integer format.
239239inline uint16_t encodeHistogramCount (uint64_t Count) {
You can’t perform that action at this time.
0 commit comments