Skip to content

Commit

Permalink
Wrap a long line.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanTLavavej authored and ulfjack committed Apr 3, 2019
1 parent 46bf5cf commit 8271f5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ryu/d2fixed.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ static inline uint32_t mulShift_mod1e9(const uint64_t m, const uint64_t* const m

#if defined(HAS_64_BIT_INTRINSICS)
// Returns the low 64 bits of the high 128 bits of the 256-bit product of a and b.
static inline uint64_t umul256_hi128_lo64(const uint64_t aHi, const uint64_t aLo, const uint64_t bHi, const uint64_t bLo) {
static inline uint64_t umul256_hi128_lo64(
const uint64_t aHi, const uint64_t aLo, const uint64_t bHi, const uint64_t bLo) {
uint64_t b00Hi;
const uint64_t b00Lo = umul128(aLo, bLo, &b00Hi);
uint64_t b01Hi;
Expand Down

0 comments on commit 8271f5c

Please sign in to comment.