summaryrefslogtreecommitdiff
path: root/lib/DebugInfo/DIContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DebugInfo/DIContext.cpp')
-rw-r--r--lib/DebugInfo/DIContext.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/DebugInfo/DIContext.cpp b/lib/DebugInfo/DIContext.cpp
index ead57f9715..691a92c392 100644
--- a/lib/DebugInfo/DIContext.cpp
+++ b/lib/DebugInfo/DIContext.cpp
@@ -19,8 +19,9 @@ DIContext *DIContext::getDWARFContext(bool isLittleEndian,
StringRef aRangeSection,
StringRef lineSection,
StringRef stringSection,
- StringRef rangeSection) {
+ StringRef rangeSection,
+ const RelocAddrMap &Map) {
return new DWARFContextInMemory(isLittleEndian, infoSection, abbrevSection,
aRangeSection, lineSection, stringSection,
- rangeSection);
+ rangeSection, Map);
}