llvm::IntrusiveBackListBase::deleteNode

Remove node N from the list.

Synopsis

Declared in <llvm/CodeGen/DIE.h>

bool
deleteNode(Node& N);

Description

Walks the list until N's predecessor is found, updates the predecessor's next pointer, and resets N's next pointer to itself.

Return Value

true if the node was found and removed.

Parameters

NameDescription
NNode to remove.