From ef14ce8e1be2fcd43c0292433da460418a170835 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Sat, 1 Apr 2017 21:50:06 +0000 Subject: [PATCH] [APInt] Fix indentation. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299318 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/APInt.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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; } -- 2.40.0