Fix whitespace.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76926 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2009-07-24 00:55:33 +00:00
parent b74bb1a7a4
commit a271d36d7c

View File

@@ -257,8 +257,8 @@ namespace llvm {
/// rounding up, to get the number of times the backedge is executed. Return /// rounding up, to get the number of times the backedge is executed. Return
/// CouldNotCompute if an intermediate computation overflows. /// CouldNotCompute if an intermediate computation overflows.
const SCEV *getBECount(const SCEV *Start, const SCEV *getBECount(const SCEV *Start,
const SCEV *End, const SCEV *End,
const SCEV *Step); const SCEV *Step);
/// getBackedgeTakenInfo - Return the BackedgeTakenInfo for the given /// getBackedgeTakenInfo - Return the BackedgeTakenInfo for the given
/// loop, lazily computing new values if the loop hasn't been analyzed /// loop, lazily computing new values if the loop hasn't been analyzed
@@ -405,7 +405,7 @@ namespace llvm {
return getAddExpr(Ops); return getAddExpr(Ops);
} }
const SCEV *getAddExpr(const SCEV *Op0, const SCEV *Op1, const SCEV *getAddExpr(const SCEV *Op0, const SCEV *Op1,
const SCEV *Op2) { const SCEV *Op2) {
SmallVector<const SCEV *, 3> Ops; SmallVector<const SCEV *, 3> Ops;
Ops.push_back(Op0); Ops.push_back(Op0);
Ops.push_back(Op1); Ops.push_back(Op1);
@@ -421,11 +421,11 @@ namespace llvm {
} }
const SCEV *getUDivExpr(const SCEV *LHS, const SCEV *RHS); const SCEV *getUDivExpr(const SCEV *LHS, const SCEV *RHS);
const SCEV *getAddRecExpr(const SCEV *Start, const SCEV *Step, const SCEV *getAddRecExpr(const SCEV *Start, const SCEV *Step,
const Loop *L); const Loop *L);
const SCEV *getAddRecExpr(SmallVectorImpl<const SCEV *> &Operands, const SCEV *getAddRecExpr(SmallVectorImpl<const SCEV *> &Operands,
const Loop *L); const Loop *L);
const SCEV *getAddRecExpr(const SmallVectorImpl<const SCEV *> &Operands, const SCEV *getAddRecExpr(const SmallVectorImpl<const SCEV *> &Operands,
const Loop *L) { const Loop *L) {
SmallVector<const SCEV *, 4> NewOp(Operands.begin(), Operands.end()); SmallVector<const SCEV *, 4> NewOp(Operands.begin(), Operands.end());
return getAddRecExpr(NewOp, L); return getAddRecExpr(NewOp, L);
} }
@@ -449,7 +449,7 @@ namespace llvm {
/// getMinusSCEV - Return LHS-RHS. /// getMinusSCEV - Return LHS-RHS.
/// ///
const SCEV *getMinusSCEV(const SCEV *LHS, const SCEV *getMinusSCEV(const SCEV *LHS,
const SCEV *RHS); const SCEV *RHS);
/// getTruncateOrZeroExtend - Return a SCEV corresponding to a conversion /// getTruncateOrZeroExtend - Return a SCEV corresponding to a conversion
/// of the input value to the specified type. If the type must be /// of the input value to the specified type. If the type must be
@@ -490,7 +490,7 @@ namespace llvm {
/// the types using zero-extension, and then perform a umax operation /// the types using zero-extension, and then perform a umax operation
/// with them. /// with them.
const SCEV *getUMaxFromMismatchedTypes(const SCEV *LHS, const SCEV *getUMaxFromMismatchedTypes(const SCEV *LHS,
const SCEV *RHS); const SCEV *RHS);
/// getUMinFromMismatchedTypes - Promote the operands to the wider of /// getUMinFromMismatchedTypes - Promote the operands to the wider of
/// the types using zero-extension, and then perform a umin operation /// the types using zero-extension, and then perform a umin operation