[llvm] r276596 - Trailing whitespace.
NAKAMURA Takumi via llvm-commits
llvm-commits at lists.llvm.org
Sun Jul 24 17:59:46 PDT 2016
Author: chapuni
Date: Sun Jul 24 19:59:46 2016
New Revision: 276596
URL: http://llvm.org/viewvc/llvm-project?rev=276596&view=rev
Log:
Trailing whitespace.
Modified:
llvm/trunk/lib/Analysis/LazyValueInfo.cpp
Modified: llvm/trunk/lib/Analysis/LazyValueInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LazyValueInfo.cpp?rev=276596&r1=276595&r2=276596&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LazyValueInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/LazyValueInfo.cpp Sun Jul 24 19:59:46 2016
@@ -610,7 +610,7 @@ static LVILatticeVal getFromRangeMetadat
case Instruction::Load:
case Instruction::Call:
case Instruction::Invoke:
- if (MDNode *Ranges = BBI->getMetadata(LLVMContext::MD_range))
+ if (MDNode *Ranges = BBI->getMetadata(LLVMContext::MD_range))
if (isa<IntegerType>(BBI->getType())) {
return LVILatticeVal::getRange(getConstantRangeFromMetadata(*Ranges));
}
@@ -684,7 +684,7 @@ bool LazyValueInfoCache::solveBlockValue
return true;
}
BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
- if (BO && isa<ConstantInt>(BO->getOperand(1))) {
+ if (BO && isa<ConstantInt>(BO->getOperand(1))) {
if (!solveBlockValueBinaryOp(Res, BBI, BB))
return false;
insertResult(Val, BB, Res);
@@ -1320,7 +1320,7 @@ LVILatticeVal LazyValueInfoCache::getVal
assert(BlockValueStack.empty() && BlockValueSet.empty());
if (!hasBlockValue(V, BB)) {
- pushBlockValue(std::make_pair(BB, V));
+ pushBlockValue(std::make_pair(BB, V));
solve();
}
LVILatticeVal Result = getBlockValue(V, BB);
@@ -1673,7 +1673,7 @@ LazyValueInfo::getPredicateAt(unsigned P
}
if (Baseline != Unknown)
return Baseline;
- }
+ }
// For a comparison where the V is outside this block, it's possible
// that we've branched on it before. Look to see if the value is known
More information about the llvm-commits
mailing list