From 6e047ab8fc7bb9436614c8c5a600bc61f82d7a29 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Fri, 26 May 2006 21:19:17 +0000 Subject: [PATCH] Fix a copy-and-paste-o that would break some compilers. llvm-svn: 28507 --- llvm/lib/Transforms/Utils/LCSSA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/Utils/LCSSA.cpp b/llvm/lib/Transforms/Utils/LCSSA.cpp index bb4c57e95428..43f331d71b2b 100644 --- a/llvm/lib/Transforms/Utils/LCSSA.cpp +++ b/llvm/lib/Transforms/Utils/LCSSA.cpp @@ -48,7 +48,7 @@ namespace { 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...