summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-20 16:42:55 +0000
committerDan Gohman <gohman@apple.com>2009-08-20 16:42:55 +0000
commit4c0d5d5db876b0628bdf6a2174263a1c0a9130e2 (patch)
treeb04084da16b432390f8b4519804567a6ba8eda54 /include
parentd35626e8bbd42dee37dbaae3621338b02b3788ad (diff)
downloadllvm-4c0d5d5db876b0628bdf6a2174263a1c0a9130e2.tar.gz
llvm-4c0d5d5db876b0628bdf6a2174263a1c0a9130e2.tar.bz2
llvm-4c0d5d5db876b0628bdf6a2174263a1c0a9130e2.tar.xz
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.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpander.h b/include/llvm/Analysis/ScalarEvolutionExpander.h
index cc0204b6fa..915227d77b 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
-