diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-20 16:42:55 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-20 16:42:55 +0000 |
commit | 4c0d5d5db876b0628bdf6a2174263a1c0a9130e2 (patch) | |
tree | b04084da16b432390f8b4519804567a6ba8eda54 /include | |
parent | d35626e8bbd42dee37dbaae3621338b02b3788ad (diff) | |
download | external_llvm-4c0d5d5db876b0628bdf6a2174263a1c0a9130e2.zip external_llvm-4c0d5d5db876b0628bdf6a2174263a1c0a9130e2.tar.gz external_llvm-4c0d5d5db876b0628bdf6a2174263a1c0a9130e2.tar.bz2 |
Various comment and whitespace cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/ScalarEvolutionExpander.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpander.h b/include/llvm/Analysis/ScalarEvolutionExpander.h index cc0204b..915227d 100644 --- a/include/llvm/Analysis/ScalarEvolutionExpander.h +++ b/include/llvm/Analysis/ScalarEvolutionExpander.h @@ -24,7 +24,7 @@ namespace llvm { /// rewrite expressions in canonical form. /// /// Clients should create an instance of this class when rewriting is needed, - /// and destroy it when finished to allow the release of the associated + /// and destroy it when finished to allow the release of the associated /// memory. struct SCEVExpander : public SCEVVisitor<SCEVExpander, Value*> { ScalarEvolution &SE; @@ -62,7 +62,7 @@ namespace llvm { private: LLVMContext &getContext() const { return SE.getContext(); } - + /// InsertBinop - Insert the specified binary operator, doing a small amount /// of work to avoid inserting an obviously redundant operation. Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS); @@ -126,4 +126,3 @@ namespace llvm { } #endif - |