Right, it's really Extractor, not Extraction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11939 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-02-28 03:37:58 +00:00
parent 4977a163b4
commit 9e4a642c03

View 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();
}