Made CFLAA agree with clang-format. NFC.

So everyone's lives are easier in the future

llvm-svn: 232293
This commit is contained in:
George Burgess IV 2015-03-15 00:52:21 +00:00
parent 959299e7d1
commit 11d509dba0
1 changed files with 7 additions and 9 deletions

View File

@ -147,8 +147,7 @@ struct FunctionInfo {
// Lots of functions have < 4 returns. Adjust as necessary.
SmallVector<Value *, 4> ReturnedValues;
FunctionInfo(StratifiedSets<Value *> &&S,
SmallVector<Value *, 4> &&RV)
FunctionInfo(StratifiedSets<Value *> &&S, SmallVector<Value *, 4> &&RV)
: Sets(std::move(S)), ReturnedValues(std::move(RV)) {}
};
@ -281,8 +280,8 @@ public:
}
void visitCastInst(CastInst &Inst) {
Output.push_back(Edge(&Inst, Inst.getOperand(0), EdgeType::Assign,
AttrNone));
Output.push_back(
Edge(&Inst, Inst.getOperand(0), EdgeType::Assign, AttrNone));
}
void visitBinaryOperator(BinaryOperator &Inst) {
@ -588,8 +587,7 @@ private:
EdgeTypeT Weight;
Node Other;
Edge(const EdgeTypeT &W, const Node &N)
: Weight(W), Other(N) {}
Edge(const EdgeTypeT &W, const Node &N) : Weight(W), Other(N) {}
bool operator==(const Edge &E) const {
return Weight == E.Weight && Other == E.Other;