diff options
| author | Dan Gohman <gohman@apple.com> | 2007-04-17 18:21:36 +0000 | 
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2007-04-17 18:21:36 +0000 | 
| commit | 2ce1116b33a7eca3b42b7ec0fea25495f84743a4 (patch) | |
| tree | 77366eb1a454cac7d46b56802738b3b76fadc4a4 | |
| parent | 4a1e0b8c3e094ed66d3861fe549120a930b346ba (diff) | |
| download | bcm5719-llvm-2ce1116b33a7eca3b42b7ec0fea25495f84743a4.tar.gz bcm5719-llvm-2ce1116b33a7eca3b42b7ec0fea25495f84743a4.zip | |
Spell doFinalization right, so that it is a proper virtual override and
gets called.
llvm-svn: 36208
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LICM.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp index 1d7bde510bc..4ef43f8e935 100644 --- a/llvm/lib/Transforms/Scalar/LICM.cpp +++ b/llvm/lib/Transforms/Scalar/LICM.cpp @@ -77,7 +77,7 @@ namespace {        AU.addRequired<AliasAnalysis>();      } -    bool doFinalize() { +    bool doFinalization() {        LoopToAliasMap.clear();        return false;      } | 

