[llvm-commits] CVS: llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp

Brian Gaeke gaeke at niobe.cs.uiuc.edu
Thu Aug 14 01:10:11 PDT 2003


Changes in directory llvm/lib/CodeGen/InstrSched:

InstrScheduling.cpp updated: 1.54 -> 1.55

---
Log message:

Factory methods for function passes now return type FunctionPass *.


---
Diffs of the changes:

Index: llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp
diff -u llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.54 llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.55
--- llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.54	Sat Jul 26 18:23:41 2003
+++ llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp	Thu Aug 14 01:09:29 2003
@@ -1491,6 +1491,6 @@
 }
 
 
-Pass *createInstructionSchedulingWithSSAPass(const TargetMachine &tgt) {
+FunctionPass *createInstructionSchedulingWithSSAPass(const TargetMachine &tgt) {
   return new InstructionSchedulingWithSSA(tgt);
 }





More information about the llvm-commits mailing list