[PM/AA] Put the 'final' keyword in the correct place. And actually
authorChandler Carruth <chandlerc@gmail.com>
Wed, 22 Jul 2015 09:34:18 +0000 (09:34 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Wed, 22 Jul 2015 09:34:18 +0000 (09:34 +0000)
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

lib/Analysis/IPA/GlobalsModRef.cpp

index f93fc1a39ed1b36750617c384a773982d96492ee..5f23d7ec23fce02d395204e2094a8ae492497994 100644 (file)
@@ -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<DeletionCallbackHandle>::iterator I;