mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 09:45:00 +00:00
IR: Move call to dropAllReferences() to MDNode subclasses
Don't call `dropAllReferences()` from `MDNode::~MDNode()`, call it directly from `~MDNodeFwdDecl()` and `~GenericMDNode()`. llvm-svn: 223904
This commit is contained in:
parent
c64f605e39
commit
2fceb99340
@ -598,7 +598,7 @@ protected:
|
||||
}
|
||||
|
||||
MDNode(LLVMContext &Context, unsigned ID, ArrayRef<Metadata *> MDs);
|
||||
~MDNode() { dropAllReferences(); }
|
||||
~MDNode() {}
|
||||
|
||||
void dropAllReferences();
|
||||
void storeDistinctInContext();
|
||||
@ -766,7 +766,7 @@ class MDNodeFwdDecl : public MDNode, ReplaceableMetadataImpl {
|
||||
|
||||
MDNodeFwdDecl(LLVMContext &C, ArrayRef<Metadata *> Vals)
|
||||
: MDNode(C, MDNodeFwdDeclKind, Vals) {}
|
||||
~MDNodeFwdDecl() {}
|
||||
~MDNodeFwdDecl() { dropAllReferences(); }
|
||||
|
||||
public:
|
||||
static bool classof(const Metadata *MD) {
|
||||
|
@ -428,6 +428,7 @@ GenericMDNode::~GenericMDNode() {
|
||||
pImpl->NonUniquedMDNodes.erase(this);
|
||||
else
|
||||
pImpl->MDNodeSet.erase(this);
|
||||
dropAllReferences();
|
||||
}
|
||||
|
||||
void GenericMDNode::resolve() {
|
||||
|
Loading…
Reference in New Issue
Block a user