[llvm] 0539044 - [Attributor][NFC] Clang format
Shinji Okumura via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 25 03:33:16 PDT 2020
Author: Shinji Okumura
Date: 2020-08-25T19:32:58+09:00
New Revision: 05390440a225c75358da84a1f2c3e8b8ddecd238
URL: https://github.com/llvm/llvm-project/commit/05390440a225c75358da84a1f2c3e8b8ddecd238
DIFF: https://github.com/llvm/llvm-project/commit/05390440a225c75358da84a1f2c3e8b8ddecd238.diff
LOG: [Attributor][NFC] Clang format
Added:
Modified:
llvm/lib/Transforms/IPO/AttributorAttributes.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/AttributorAttributes.cpp b/llvm/lib/Transforms/IPO/AttributorAttributes.cpp
index 49b92e23955a..8a83e7f05220 100644
--- a/llvm/lib/Transforms/IPO/AttributorAttributes.cpp
+++ b/llvm/lib/Transforms/IPO/AttributorAttributes.cpp
@@ -3287,7 +3287,7 @@ ChangeStatus AAIsDeadFunction::updateImpl(Attributor &A) {
// Fast forward for uninteresting instructions. We could look for UB here
// though.
- while(!I->isTerminator() && !isa<CallBase>(I)) {
+ while (!I->isTerminator() && !isa<CallBase>(I)) {
Change = ChangeStatus::CHANGED;
I = I->getNextNode();
}
More information about the llvm-commits
mailing list