diff options
author | Xin Tong <trent.xin.tong@gmail.com> | 2017-02-24 20:59:26 +0000 |
---|---|---|
committer | Xin Tong <trent.xin.tong@gmail.com> | 2017-02-24 20:59:26 +0000 |
commit | 68ea9aa23a77f54d204f4dff2493cec5ceb1d80e (patch) | |
tree | e588102e6799e7e2a238f9fe164f0a626f283cf8 /llvm/lib/Analysis/LazyValueInfo.cpp | |
parent | 630d2639f91e505d59a2c8d90f93aac9bbfc87d8 (diff) | |
download | bcm5719-llvm-68ea9aa23a77f54d204f4dff2493cec5ceb1d80e.tar.gz bcm5719-llvm-68ea9aa23a77f54d204f4dff2493cec5ceb1d80e.zip |
Fix Indentation. NFCI
llvm-svn: 296169
Diffstat (limited to 'llvm/lib/Analysis/LazyValueInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LazyValueInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/LazyValueInfo.cpp b/llvm/lib/Analysis/LazyValueInfo.cpp index 877fc055358..9e40b055366 100644 --- a/llvm/lib/Analysis/LazyValueInfo.cpp +++ b/llvm/lib/Analysis/LazyValueInfo.cpp @@ -1384,8 +1384,8 @@ static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom, /// \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); |