Skip to content

Commit 12bb889

Browse files
committed
Fix formatting for .inc files
1 parent e63e365 commit 12bb889

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler-rt/include/profile/MemProfData.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ constexpr int ExponentBits = 4;
233233
constexpr uint16_t MaxMantissa = (1U << MantissaBits) - 1;
234234
constexpr uint16_t MaxExponent = (1U << ExponentBits) - 1;
235235
constexpr 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.
239239
inline uint16_t encodeHistogramCount(uint64_t Count) {

llvm/include/llvm/ProfileData/MemProfData.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ constexpr int ExponentBits = 4;
233233
constexpr uint16_t MaxMantissa = (1U << MantissaBits) - 1;
234234
constexpr uint16_t MaxExponent = (1U << ExponentBits) - 1;
235235
constexpr 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.
239239
inline uint16_t encodeHistogramCount(uint64_t Count) {

0 commit comments

Comments
 (0)