mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
IR: Move replaceAllUsesWith() back up to MDNode
Move `MDNodeFwdDecl::replaceAllUsesWith()` back up to `MDNode`, but assert `isTemporary()`. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c888b87713
commit
00a658dcdc
@ -734,6 +734,15 @@ public:
|
||||
bool isDistinct() const { return Storage == Distinct; }
|
||||
bool isTemporary() const { return Storage == Temporary; }
|
||||
|
||||
/// \brief RAUW a temporary.
|
||||
///
|
||||
/// \pre \a isTemporary() must be \c true.
|
||||
void replaceAllUsesWith(Metadata *MD) {
|
||||
assert(isTemporary() && "Expected temporary node");
|
||||
assert(!isResolved() && "Expected RAUW support");
|
||||
Context.getReplaceableUses()->replaceAllUsesWith(MD);
|
||||
}
|
||||
|
||||
protected:
|
||||
/// \brief Set an operand.
|
||||
///
|
||||
@ -971,11 +980,6 @@ public:
|
||||
static bool classof(const Metadata *MD) {
|
||||
return MD->getMetadataID() == MDNodeFwdDeclKind;
|
||||
}
|
||||
|
||||
void replaceAllUsesWith(Metadata *MD) {
|
||||
assert(Context.hasReplaceableUses() && "Expected RAUW support");
|
||||
Context.getReplaceableUses()->replaceAllUsesWith(MD);
|
||||
}
|
||||
};
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user