Fix DebugInfo replaceAllUsesWith.
authorFrederic Riss <friss@apple.com>
Mon, 15 Sep 2014 07:50:42 +0000 (07:50 +0000)
committerFrederic Riss <friss@apple.com>
Mon, 15 Sep 2014 07:50:42 +0000 (07:50 +0000)
commit740506d9cad281ffb7ea02fd5ad9800f5f1e2843
tree39b45e304fa0cb911c85ca0fb3e91388427aed91
parent04dc1486ac17350b9d1f812acc847391f3d8d696
Fix DebugInfo replaceAllUsesWith.

Summary:
replaceAllUsesWith had been modified to allow a DbgNode value to be
replaced by itself. In that case a new node is created by copying the
current DbgNode and the copy is used as replacement value.

When that copying happens, the value stored in this->DbgNode at the end
of RAUW would be a reference to the Node that has just been deleted.

This doesn't produce any bug right now, because the DI node on which we
call RAUW won't be used again.

Reviewers: dblaikie, echristo, aprantl

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D5326

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217749 91177308-0d34-0410-b5e6-96231b3b80d8
lib/IR/DebugInfo.cpp