aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Pass.h3
-rw-r--r--include/llvm/Transforms/Scalar.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h
index 06a86f1..e5af0c6 100644
--- a/include/llvm/Pass.h
+++ b/include/llvm/Pass.h
@@ -82,8 +82,7 @@ class Pass {
Pass(const Pass &); // DO NOT IMPLEMENT
public:
explicit Pass(intptr_t pid) : Resolver(0), PassID(pid) {}
- explicit Pass(const void *pid) : Resolver(0),
- PassID((intptr_t)pid) {}
+ explicit Pass(const void *pid) : Resolver(0), PassID((intptr_t)pid) {}
virtual ~Pass();
/// getPassName - Return a nice clean name for a pass. This usually
diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h
index 650be05..9a165c9 100644
--- a/include/llvm/Transforms/Scalar.h
+++ b/include/llvm/Transforms/Scalar.h
@@ -204,7 +204,7 @@ FunctionPass *createTailDuplicationPass();
//
FunctionPass *createJumpThreadingPass();
- //===----------------------------------------------------------------------===//
+//===----------------------------------------------------------------------===//
//
// CFGSimplification - Merge basic blocks, eliminate unreachable blocks,
// simplify terminator instructions, etc...