From: Dan Gohman Date: Tue, 17 Apr 2007 18:21:36 +0000 (+0000) Subject: Spell doFinalization right, so that it is a proper virtual override and X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=747603e39ea3f29add9ba6c07bbefcc5c2432612;p=oota-llvm.git Spell doFinalization right, so that it is a proper virtual override and gets called. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36208 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp index 1d7bde510bc..4ef43f8e935 100644 --- a/lib/Transforms/Scalar/LICM.cpp +++ b/lib/Transforms/Scalar/LICM.cpp @@ -77,7 +77,7 @@ namespace { AU.addRequired(); } - bool doFinalize() { + bool doFinalization() { LoopToAliasMap.clear(); return false; }