From 9e4a642c0395b17b771940636c5967348bd1c133 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sat, 28 Feb 2004 03:37:58 +0000 Subject: [PATCH] Right, it's really Extractor, not Extraction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11939 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Utils/LoopExtractor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/Utils/LoopExtractor.cpp b/lib/Transforms/Utils/LoopExtractor.cpp index aae7ccbe480..da97b5f62c2 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(); } -- 2.11.0