[llvm] r258330 - fix formatting; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 20 10:59:16 PST 2016
Author: spatel
Date: Wed Jan 20 12:59:16 2016
New Revision: 258330
URL: http://llvm.org/viewvc/llvm-project?rev=258330&view=rev
Log:
fix formatting; NFC
Modified:
llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
Modified: llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp?rev=258330&r1=258329&r2=258330&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp (original)
+++ llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp Wed Jan 20 12:59:16 2016
@@ -612,7 +612,8 @@ simplifyRelocatesOffABase(GCRelocateInst
continue;
// Create a Builder and replace the target callsite with a gep
- assert(RelocatedBase->getNextNode() && "Should always have one since it's not a terminator");
+ assert(RelocatedBase->getNextNode() &&
+ "Should always have one since it's not a terminator");
// Insert after RelocatedBase
IRBuilder<> Builder(RelocatedBase->getNextNode());
@@ -1774,8 +1775,7 @@ bool CodeGenPrepare::optimizeCallInst(Ca
// happens.
WeakVH IterHandle(&*CurInstIterator);
- replaceAndRecursivelySimplify(CI, RetVal,
- TLInfo, nullptr);
+ replaceAndRecursivelySimplify(CI, RetVal, TLInfo, nullptr);
// If the iterator instruction was recursively deleted, start over at the
// start of the block.
More information about the llvm-commits
mailing list