[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LCSSA.cpp
Owen Anderson
resistor at mac.com
Fri May 26 14:19:29 PDT 2006
Changes in directory llvm/lib/Transforms/Scalar:
LCSSA.cpp updated: 1.2 -> 1.3
---
Log message:
Fix a copy-and-paste-o that would break some compilers.
---
Diffs of the changes: (+1 -1)
LCSSA.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Transforms/Scalar/LCSSA.cpp
diff -u llvm/lib/Transforms/Scalar/LCSSA.cpp:1.2 llvm/lib/Transforms/Scalar/LCSSA.cpp:1.3
--- llvm/lib/Transforms/Scalar/LCSSA.cpp:1.2 Fri May 26 16:11:53 2006
+++ llvm/lib/Transforms/Scalar/LCSSA.cpp Fri May 26 16:19:17 2006
@@ -48,7 +48,7 @@
DominanceFrontier *DF; // Current Dominance Frontier
virtual bool runOnFunction(Function &F);
- bool LCSSA::visitSubloop(Loop* L);
+ bool visitSubloop(Loop* L);
/// This transformation requires natural loop information & requires that
/// loop preheaders be inserted into the CFG...
More information about the llvm-commits
mailing list