[llvm] r296169 - Fix Indentation. NFCI
Xin Tong via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 24 12:59:26 PST 2017
Author: trentxintong
Date: Fri Feb 24 14:59:26 2017
New Revision: 296169
URL: http://llvm.org/viewvc/llvm-project?rev=296169&view=rev
Log:
Fix Indentation. NFCI
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=296169&r1=296168&r2=296169&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LazyValueInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/LazyValueInfo.cpp Fri Feb 24 14:59:26 2017
@@ -1384,8 +1384,8 @@ static bool getEdgeValueLocal(Value *Val
/// \brief Compute the value of Val on the edge BBFrom -> BBTo or the value at
/// the basic block if the edge does not constrain Val.
bool LazyValueInfoImpl::getEdgeValue(Value *Val, BasicBlock *BBFrom,
- BasicBlock *BBTo, LVILatticeVal &Result,
- Instruction *CxtI) {
+ BasicBlock *BBTo, LVILatticeVal &Result,
+ Instruction *CxtI) {
// If already a constant, there is nothing to compute.
if (Constant *VC = dyn_cast<Constant>(Val)) {
Result = LVILatticeVal::get(VC);
More information about the llvm-commits
mailing list