[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LoopUnswitch.cpp

Jeff Cohen jeffc at jolt-lang.org
Wed Jan 5 21:47:29 PST 2005



Changes in directory llvm/lib/Transforms/Scalar:

LoopUnswitch.cpp updated: 1.3 -> 1.4
---
Log message:

Put createLoopUnswitchPass() into proper namespace

---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
diff -u llvm/lib/Transforms/Scalar/LoopUnswitch.cpp:1.3 llvm/lib/Transforms/Scalar/LoopUnswitch.cpp:1.4
--- llvm/lib/Transforms/Scalar/LoopUnswitch.cpp:1.3	Fri Sep  3 13:19:51 2004
+++ llvm/lib/Transforms/Scalar/LoopUnswitch.cpp	Wed Jan  5 23:47:18 2005
@@ -68,7 +68,7 @@
   RegisterOpt<LoopUnswitch> X("loop-unswitch", "Unswitch loops");
 }
 
-FunctionPass *createLoopUnswitchPass() { return new LoopUnswitch(); }
+FunctionPass *llvm::createLoopUnswitchPass() { return new LoopUnswitch(); }
 
 bool LoopUnswitch::runOnFunction(Function &F) {
   bool Changed = false;






More information about the llvm-commits mailing list