From: Owen Anderson Date: Fri, 26 May 2006 21:19:17 +0000 (+0000) Subject: Fix a copy-and-paste-o that would break some compilers. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fc3a3bc64b2781ab63f87312d953e3fa22888899;p=oota-llvm.git Fix a copy-and-paste-o that would break some compilers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28507 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/LCSSA.cpp b/lib/Transforms/Utils/LCSSA.cpp index bb4c57e9542..43f331d71b2 100644 --- a/lib/Transforms/Utils/LCSSA.cpp +++ b/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...