diff options
| author | Owen Anderson <resistor@mac.com> | 2006-05-26 21:19:17 +0000 | 
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2006-05-26 21:19:17 +0000 | 
| commit | 6e047ab8fc7bb9436614c8c5a600bc61f82d7a29 (patch) | |
| tree | 2f8aa5ca33cfaf1e207d5b8c53f4301177db7853 | |
| parent | f3dd3e2bfdf62056f0413800cf19f9e45781bf33 (diff) | |
| download | bcm5719-llvm-6e047ab8fc7bb9436614c8c5a600bc61f82d7a29.tar.gz bcm5719-llvm-6e047ab8fc7bb9436614c8c5a600bc61f82d7a29.zip | |
Fix a copy-and-paste-o that would break some compilers.
llvm-svn: 28507
| -rw-r--r-- | llvm/lib/Transforms/Utils/LCSSA.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/Utils/LCSSA.cpp b/llvm/lib/Transforms/Utils/LCSSA.cpp index bb4c57e9542..43f331d71b2 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... | 

