From: Jacob Lifshay Date: Fri, 22 Apr 2022 21:37:29 +0000 (-0700) Subject: format code X-Git-Tag: opf_rfc_ls005_v1~2614 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a4744c65bfc9e1003977126ad510fcda1b41fca;p=libreriscv.git format code --- diff --git a/openpower/sv/biginteger/divmnu64.c b/openpower/sv/biginteger/divmnu64.c index 06b0deb13..b6c4b52e7 100644 --- a/openpower/sv/biginteger/divmnu64.c +++ b/openpower/sv/biginteger/divmnu64.c @@ -82,11 +82,11 @@ int divmnu(unsigned q[], unsigned r[], const unsigned u[], const unsigned v[], int m, int n) { - const unsigned long long b = 1LL<<32; // Number base (2**32). - unsigned *un, *vn; // Normalized form of u, v. - unsigned long long qhat; // Estimated quotient digit. - unsigned long long rhat; // A remainder. - unsigned long long p; // Product of two digits. + const unsigned long long b = 1LL << 32; // Number base (2**32). + unsigned *un, *vn; // Normalized form of u, v. + unsigned long long qhat; // Estimated quotient digit. + unsigned long long rhat; // A remainder. + unsigned long long p; // Product of two digits. long long t, k; int s, i, j;