We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7408359 commit 75c5cd0Copy full SHA for 75c5cd0
lldb/source/Expression/IRInterpreter.cpp
@@ -259,7 +259,9 @@ class InterpreterStackFrame {
259
break;
260
case Value::FunctionVal:
261
if (const Function *constant_func = dyn_cast<Function>(constant)) {
262
- lldb_private::ConstString name(constant_func->getName());
+ lldb_private::ConstString name(
263
+ llvm::GlobalValue::dropLLVMManglingEscape(
264
+ constant_func->getName()));
265
bool missing_weak = false;
266
lldb::addr_t addr = m_execution_unit.FindSymbol(name, missing_weak);
267
if (addr == LLDB_INVALID_ADDRESS)
0 commit comments