From 8271f5cfb31177b2324b3d186a221f91004b0c90 Mon Sep 17 00:00:00 2001 From: "Stephan T. Lavavej" Date: Tue, 2 Apr 2019 18:24:25 -0700 Subject: [PATCH] Wrap a long line. --- ryu/d2fixed.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ryu/d2fixed.c b/ryu/d2fixed.c index 808948f8..4a04e8d9 100644 --- a/ryu/d2fixed.c +++ b/ryu/d2fixed.c @@ -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;