Skip to content

Commit f5ff751

Browse files
committed
[libc] formatting
Signed-off-by: Shreeyash Pandey <[email protected]>
1 parent 744463c commit f5ff751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/__support/fixed_point/fx_bits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ template <typename XType> LIBC_INLINE constexpr XType divi(int n, int d) {
257257
if (d == INT_MIN) {
258258
dv = dv - 1; // Two's complement
259259
}
260-
260+
261261
uint32_t clz = cpp::countl_zero<uint32_t>(static_cast<uint32_t>(dv)) - 1;
262262
uint64_t scaled_val = dv << clz;
263263
// Scale denominator to be in the range of [0.5,1]

0 commit comments

Comments
 (0)