mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 18:34:09 +00:00
IR: Simplify handleChangedOperand() fast path, NFC
Use `isUniqued()` instead of `isStoredDistinctInContext()`, and remove an assertion that won't be valid once temporaries are merged back in. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226491 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5cc26e0d4b
commit
e2644b68c1
@ -524,9 +524,7 @@ void UniquableMDNode::handleChangedOperand(void *Ref, Metadata *New) {
|
||||
unsigned Op = static_cast<MDOperand *>(Ref) - op_begin();
|
||||
assert(Op < getNumOperands() && "Expected valid operand");
|
||||
|
||||
if (isStoredDistinctInContext()) {
|
||||
assert(isResolved() && "Expected distinct node to be resolved");
|
||||
|
||||
if (!isUniqued()) {
|
||||
// This node is not uniqued. Just set the operand and be done with it.
|
||||
setOperand(Op, New);
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user