summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/tools/xray_to_optrack/xray_to_optrack.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/tools/xray_to_optrack/xray_to_optrack.cxx')
-rw-r--r--src/third_party/wiredtiger/tools/xray_to_optrack/xray_to_optrack.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/tools/xray_to_optrack/xray_to_optrack.cxx b/src/third_party/wiredtiger/tools/xray_to_optrack/xray_to_optrack.cxx
index 5595c8e89d9..8826e682a99 100644
--- a/src/third_party/wiredtiger/tools/xray_to_optrack/xray_to_optrack.cxx
+++ b/src/third_party/wiredtiger/tools/xray_to_optrack/xray_to_optrack.cxx
@@ -96,7 +96,7 @@ symbolize_func_id(uint32_t func_id, const std::string &instr_map,
ss << "Found function id \"" << func_id << "\" without a corresponding address";
return make_error(ss.str());
}
- auto res = symbolizer.symbolizeCode(instr_map, iter->second);
+ auto res = symbolizer.symbolizeCode(instr_map, {iter->second, llvm::object::SectionedAddress::UndefSection});
if (!res)
return res.takeError();
if (res->FunctionName == "<invalid>") {