mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-11 13:46:13 +00:00
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:
parent
4977a163b4
commit
9e4a642c03
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user