diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/TableGen/Record.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/TableGen/Record.cpp b/llvm/lib/TableGen/Record.cpp index d4800c4e7a9..34e3ab4a2e3 100644 --- a/llvm/lib/TableGen/Record.cpp +++ b/llvm/lib/TableGen/Record.cpp @@ -2031,7 +2031,7 @@ RecordKeeper::getAllDerivedDefinitions(const std::string &ClassName) const { std::vector<Record*> Defs; for (const auto &D : getDefs()) if (D.second->isSubClassOf(Class)) - Defs.push_back(D.second); + Defs.push_back(D.second.get()); return Defs; } |