aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LoopExtractor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Transforms/Utils/LoopExtractor.cpp')
-rw-r--r--lib/Transforms/Utils/LoopExtractor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/LoopExtractor.cpp b/lib/Transforms/Utils/LoopExtractor.cpp
index aae7ccbe48..da97b5f62c 100644
--- a/lib/Transforms/Utils/LoopExtractor.cpp
+++ b/lib/Transforms/Utils/LoopExtractor.cpp
@@ -17,7 +17,7 @@ using namespace llvm;
namespace {
// FIXME: PassManager should allow Module passes to require FunctionPasses
-struct LoopExtraction : public FunctionPass {
+struct LoopExtractor : public FunctionPass {
public:
LoopExtractor() {}
@@ -65,5 +65,5 @@ bool LoopExtractor::runOnFunction(Function &F) {
/// createLoopExtractorPass
///
FunctionPass* llvm::createLoopExtractorPass() {
- return new LoopExtractor;
+ return new LoopExtractor();
}