Make class final to pacify -Wnon-virtual-dtor.
authorManuel Klimek <klimek@google.com>
Tue, 20 Oct 2015 08:21:01 +0000 (08:21 +0000)
committerManuel Klimek <klimek@google.com>
Tue, 20 Oct 2015 08:21:01 +0000 (08:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250805 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gold/gold-plugin.cpp

index 062f746c8fcb609e5061aee236907eef92936803..5365b99efe3f8be7a8c2c3bb93e7eaff3244475f 100644 (file)
@@ -544,7 +544,7 @@ static const char *getResolutionName(ld_plugin_symbol_resolution R) {
 }
 
 namespace {
-class LocalValueMaterializer : public ValueMaterializer {
+class LocalValueMaterializer final : public ValueMaterializer {
   DenseSet<GlobalValue *> &Dropped;
   DenseMap<GlobalObject *, GlobalObject *> LocalVersions;