mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 23:23:38 -04:00
[APInt] Fix indentation of tcDivide. Combine variable declaration and initialization.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302626 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
+13
-15
@@ -2386,22 +2386,20 @@ int APInt::tcDivide(WordType *lhs, const WordType *rhs,
|
||||
/* Loop, subtracting SRHS if REMAINDER is greater and adding that to
|
||||
the total. */
|
||||
for (;;) {
|
||||
int compare;
|
||||
int compare = tcCompare(remainder, srhs, parts);
|
||||
if (compare >= 0) {
|
||||
tcSubtract(remainder, srhs, 0, parts);
|
||||
lhs[n] |= mask;
|
||||
}
|
||||
|
||||
compare = tcCompare(remainder, srhs, parts);
|
||||
if (compare >= 0) {
|
||||
tcSubtract(remainder, srhs, 0, parts);
|
||||
lhs[n] |= mask;
|
||||
}
|
||||
|
||||
if (shiftCount == 0)
|
||||
break;
|
||||
shiftCount--;
|
||||
tcShiftRight(srhs, parts, 1);
|
||||
if ((mask >>= 1) == 0) {
|
||||
mask = (WordType) 1 << (APINT_BITS_PER_WORD - 1);
|
||||
n--;
|
||||
}
|
||||
if (shiftCount == 0)
|
||||
break;
|
||||
shiftCount--;
|
||||
tcShiftRight(srhs, parts, 1);
|
||||
if ((mask >>= 1) == 0) {
|
||||
mask = (WordType) 1 << (APINT_BITS_PER_WORD - 1);
|
||||
n--;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user