commit | bf3c4cfaad706db21ac82a4376e1899d0d7f0935 | [log] [tgz] |
---|---|---|
author | Brian Gaeke <gaeke@uiuc.edu> | Thu Aug 14 06:09:32 2003 +0000 |
committer | Brian Gaeke <gaeke@uiuc.edu> | Thu Aug 14 06:09:32 2003 +0000 |
tree | 0554aebd575c26ce52252d94d08c2c151dc7ffbf | |
parent | 1d3fa21cdd115b48241ff031f01e6b489b077abf [diff] [blame] |
Factory methods for function passes now return type FunctionPass *. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7839 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/InstrSched/InstrScheduling.cpp b/lib/CodeGen/InstrSched/InstrScheduling.cpp index e877822..a6222d6 100644 --- a/lib/CodeGen/InstrSched/InstrScheduling.cpp +++ b/lib/CodeGen/InstrSched/InstrScheduling.cpp
@@ -1491,6 +1491,6 @@ } -Pass *createInstructionSchedulingWithSSAPass(const TargetMachine &tgt) { +FunctionPass *createInstructionSchedulingWithSSAPass(const TargetMachine &tgt) { return new InstructionSchedulingWithSSA(tgt); }