Right, it's really Extractor, not Extraction.
[oota-llvm.git] / lib / Transforms / Utils / LoopExtractor.cpp
index aae7ccbe48041bc5eb3097b6fc4e836c6ebd29b8..da97b5f62c29d51e3e820854b5d3c033d27a6a28 100644 (file)
@@ -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();
 }