[LVI] Fix class indentation (NFC)

This class uses a mix of different indentation levels, normalize it.
This commit is contained in:
Nikita Popov 2020-06-14 15:42:27 +02:00
parent 83e7230e5a
commit 862db369f8
1 changed files with 62 additions and 62 deletions

View File

@ -334,10 +334,10 @@ public:
}; };
} }
namespace { namespace {
// The actual implementation of the lazy analysis and update. Note that the // The actual implementation of the lazy analysis and update. Note that the
// inheritance from LazyValueInfoCache is intended to be temporary while // inheritance from LazyValueInfoCache is intended to be temporary while
// splitting the code and then transitioning to a has-a relationship. // splitting the code and then transitioning to a has-a relationship.
class LazyValueInfoImpl { class LazyValueInfoImpl {
/// Cached results from previous queries /// Cached results from previous queries
LazyValueInfoCache TheCache; LazyValueInfoCache TheCache;
@ -408,7 +408,7 @@ namespace {
void solve(); void solve();
public: public:
/// This is the query interface to determine the lattice /// This is the query interface to determine the lattice
/// value for the specified Value* at the end of the specified block. /// value for the specified Value* at the end of the specified block.
ValueLatticeElement getValueInBlock(Value *V, BasicBlock *BB, ValueLatticeElement getValueInBlock(Value *V, BasicBlock *BB,
@ -449,7 +449,7 @@ namespace {
LazyValueInfoImpl(AssumptionCache *AC, const DataLayout &DL, LazyValueInfoImpl(AssumptionCache *AC, const DataLayout &DL,
Function *GuardDecl) Function *GuardDecl)
: AC(AC), DL(DL), GuardDecl(GuardDecl) {} : AC(AC), DL(DL), GuardDecl(GuardDecl) {}
}; };
} // end anonymous namespace } // end anonymous namespace