diff options
author | Devang Patel <dpatel@apple.com> | 2011-02-18 22:43:42 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-02-18 22:43:42 +0000 |
commit | a778f5c798fc78ca15f813c362cdcdcc1eb86266 (patch) | |
tree | 6985fb1ab8c5de26f937356d0be0ab4011b8548e /include | |
parent | 0160c8a8bc1c1f3c3a65a44cb614bf03ef82a967 (diff) |
Do not lose debug info of an inlined function argument even if the argument is only used through GEPs.
This time with a fix that avoids using invalidated DenseMap iterator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125984 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index f708e2141e..c9de95bebd 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -100,10 +100,6 @@ public: return DbgValMap[Node]; } - void removeSDDbgValues(const SDNode *Node) { - DbgValMap.erase(Node); - } - typedef SmallVector<SDDbgValue*,32>::iterator DbgIterator; DbgIterator DbgBegin() { return DbgValues.begin(); } DbgIterator DbgEnd() { return DbgValues.end(); } |