summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/SelectionDAG.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-02-18 22:43:42 +0000
committerDevang Patel <dpatel@apple.com>2011-02-18 22:43:42 +0000
commita778f5c798fc78ca15f813c362cdcdcc1eb86266 (patch)
tree6985fb1ab8c5de26f937356d0be0ab4011b8548e /include/llvm/CodeGen/SelectionDAG.h
parent0160c8a8bc1c1f3c3a65a44cb614bf03ef82a967 (diff)
downloadllvm-a778f5c798fc78ca15f813c362cdcdcc1eb86266.tar.gz
llvm-a778f5c798fc78ca15f813c362cdcdcc1eb86266.tar.bz2
llvm-a778f5c798fc78ca15f813c362cdcdcc1eb86266.tar.xz
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/llvm/CodeGen/SelectionDAG.h')
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h4
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(); }