From: Craig Topper Date: Sat, 1 Apr 2017 21:50:06 +0000 (+0000) Subject: [APInt] Fix indentation. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef14ce8e1be2fcd43c0292433da460418a170835;p=llvm [APInt] Fix indentation. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299318 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index 4275e3918c6..babfbdc21a6 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -2816,15 +2816,15 @@ void APInt::tcComplement(integerPart *dst, unsigned parts) { int APInt::tcCompare(const integerPart *lhs, const integerPart *rhs, unsigned parts) { while (parts) { - parts--; - if (lhs[parts] == rhs[parts]) - continue; + parts--; + if (lhs[parts] == rhs[parts]) + continue; - if (lhs[parts] > rhs[parts]) - return 1; - else - return -1; - } + if (lhs[parts] > rhs[parts]) + return 1; + else + return -1; + } return 0; }