From: Chandler Carruth Date: Wed, 22 Jul 2015 09:34:18 +0000 (+0000) Subject: [PM/AA] Put the 'final' keyword in the correct place. And actually X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3f1d2f9e7863ced5221b1c5afef80ac7aa6bd479;p=oota-llvm.git [PM/AA] Put the 'final' keyword in the correct place. And actually succeed at compiling my change before committing it too! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242879 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/IPA/GlobalsModRef.cpp b/lib/Analysis/IPA/GlobalsModRef.cpp index f93fc1a39ed..5f23d7ec23f 100644 --- a/lib/Analysis/IPA/GlobalsModRef.cpp +++ b/lib/Analysis/IPA/GlobalsModRef.cpp @@ -221,7 +221,7 @@ INITIALIZE_AG_PASS_END(GlobalsModRef, AliasAnalysis, "globalsmodref-aa", Pass *llvm::createGlobalsModRefPass() { return new GlobalsModRef(); } -struct final GlobalsModRef::DeletionCallbackHandle : CallbackVH { +struct GlobalsModRef::DeletionCallbackHandle final : CallbackVH { GlobalsModRef &GMR; std::list::iterator I;