summaryrefslogtreecommitdiff
path: root/lib/DebugInfo/DIContext.cpp
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2012-11-12 14:25:36 +0000
committerAlexey Samsonov <samsonov@google.com>2012-11-12 14:25:36 +0000
commit4c0ae9066fecbbd507162a880450641aa5c33098 (patch)
tree9fd68167d4944186f5015d3da5eec854da240b02 /lib/DebugInfo/DIContext.cpp
parent30d8f0e9770db76f19273419c57fe112129b145a (diff)
downloadllvm-4c0ae9066fecbbd507162a880450641aa5c33098.tar.gz
llvm-4c0ae9066fecbbd507162a880450641aa5c33098.tar.bz2
llvm-4c0ae9066fecbbd507162a880450641aa5c33098.tar.xz
Fixup for r167558: Store raw pointer (instead of reference) to RelocMap in DIContext. This is needed to prevent crashes because of dangling reference if the clients don't provide RelocMap to DIContext constructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167728 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo/DIContext.cpp')
-rw-r--r--lib/DebugInfo/DIContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DebugInfo/DIContext.cpp b/lib/DebugInfo/DIContext.cpp
index 691a92c392..6484abcfe8 100644
--- a/lib/DebugInfo/DIContext.cpp
+++ b/lib/DebugInfo/DIContext.cpp
@@ -20,7 +20,7 @@ DIContext *DIContext::getDWARFContext(bool isLittleEndian,
StringRef lineSection,
StringRef stringSection,
StringRef rangeSection,
- const RelocAddrMap &Map) {
+ const RelocAddrMap *Map) {
return new DWARFContextInMemory(isLittleEndian, infoSection, abbrevSection,
aRangeSection, lineSection, stringSection,
rangeSection, Map);