diff options
author | Andreas Bolka <a@bolka.at> | 2009-07-09 22:14:25 +0000 |
---|---|---|
committer | Andreas Bolka <a@bolka.at> | 2009-07-09 22:14:25 +0000 |
commit | 7b9547089f0363b803e55dcbde1d6b99710dfe69 (patch) | |
tree | 7daba03ae5759dc91e0c7bd12ae062ef92f389ce | |
parent | a3755d8d366fdd7a2415b93ac0253f8e677c9dfd (diff) |
Fix typo, trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75179 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/ScalarEvolution.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h index eec7ec8de1..84a6a96cd8 100644 --- a/include/llvm/Analysis/ScalarEvolution.h +++ b/include/llvm/Analysis/ScalarEvolution.h @@ -50,7 +50,7 @@ namespace llvm { protected: virtual ~SCEV(); public: - explicit SCEV(unsigned SCEVTy) : + explicit SCEV(unsigned SCEVTy) : SCEVType(SCEVTy) {} virtual void Profile(FoldingSetNodeID &ID) const = 0; @@ -194,7 +194,7 @@ namespace llvm { /// the loop if it is known, or a SCEVCouldNotCompute otherwise. const SCEV *Exact; - /// Exact - An expression indicating the least maximum backedge-taken + /// Max - An expression indicating the least maximum backedge-taken /// count of the loop that is known, or a SCEVCouldNotCompute. const SCEV *Max; |