mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-30 02:25:19 +00:00
IR: Move call to dropAllReferences() to MDNode subclasses
Don't call `dropAllReferences()` from `MDNode::~MDNode()`, call it directly from `~MDNodeFwdDecl()` and `~GenericMDNode()`. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223904 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user