diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-27 02:43:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-27 02:43:03 +0000 |
commit | bb6946ed7d71686ee7fa37f5e259df0d6f26febc (patch) | |
tree | 7bbfe66024d6c41e526efff49514b8c345de11f1 /include/llvm | |
parent | a3311f6429f014150d8e85222f733837138542eb (diff) | |
download | external_llvm-bb6946ed7d71686ee7fa37f5e259df0d6f26febc.zip external_llvm-bb6946ed7d71686ee7fa37f5e259df0d6f26febc.tar.gz external_llvm-bb6946ed7d71686ee7fa37f5e259df0d6f26febc.tar.bz2 |
when a node is removed from an ilist, set its next/prev pointers to
null. This means that uses of invalidated iterators will explode violently
with:
ilist:143: failed assertion `NodePtr && "++'d off the end of an ilist!"'
instead of happening to work "most of the time".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48859 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/ADT/ilist | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/ADT/ilist b/include/llvm/ADT/ilist index fe55f5c..4e6ea00 100644 --- a/include/llvm/ADT/ilist +++ b/include/llvm/ADT/ilist @@ -356,6 +356,14 @@ public: setPrev(NextNode, PrevNode); IT = NextNode; removeNodeFromList(Node); // Notify traits that we removed a node... + + // Set the next/prev pointers of the current node to null. This isn't + // strictly required, but this catches errors where a node is removed from + // an ilist (and potentially deleted) with iterators still pointing at it. + // When those iterators are incremented or decremented, they will assert on + // the null next/prev pointer instead of "usually working". + setNext(Node, 0); + setPrev(Node, 0); return Node; } |