Index: lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp =================================================================== --- lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp +++ lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp @@ -488,7 +488,7 @@ if (sym == nullptr || !sym->IsTrampoline()) return thread_plan_sp; - ConstString sym_name = sym->GetName(); + ConstString sym_name = sym->GetMangled().GetName(Mangled::ePreferMangled); if (!sym_name) return thread_plan_sp; Index: lldb/test/API/lang/cpp/step-into-namespace/Makefile =================================================================== --- /dev/null +++ lldb/test/API/lang/cpp/step-into-namespace/Makefile @@ -0,0 +1,6 @@ +DYLIB_NAME := foo +DYLIB_CXX_SOURCES := foo.cpp +CXX_SOURCES := main.cpp + +include Makefile.rules + Index: lldb/test/API/lang/cpp/step-into-namespace/TestStepIntoNamespace.py =================================================================== --- /dev/null +++ lldb/test/API/lang/cpp/step-into-namespace/TestStepIntoNamespace.py @@ -0,0 +1,17 @@ +import lldb +from lldbsuite.test.lldbtest import * +import lldbsuite.test.lldbutil as lldbutil + +class StepIntoNamespace(TestBase): + mydir = TestBase.compute_mydir(__file__) + + def test(self): + self.build() + (target, process, thread, bkpt) = lldbutil.run_to_source_breakpoint(self, + "// Set a breakpoint here", + lldb.SBFileSpec("main.cpp"), + extra_images=["foo"]) + thread.StepInto() + + foo_line = line_number("foo.cpp", '// End up here') + self.expect("frame info", substrs=["foo.cpp:{}:".format(foo_line)]) Index: lldb/test/API/lang/cpp/step-into-namespace/foo.h =================================================================== --- /dev/null +++ lldb/test/API/lang/cpp/step-into-namespace/foo.h @@ -0,0 +1,4 @@ +namespace foo { + extern void foo(); +} + Index: lldb/test/API/lang/cpp/step-into-namespace/foo.cpp =================================================================== --- /dev/null +++ lldb/test/API/lang/cpp/step-into-namespace/foo.cpp @@ -0,0 +1,4 @@ +#include "foo.h" + +void foo::foo() { } // End up here + Index: lldb/test/API/lang/cpp/step-into-namespace/main.cpp =================================================================== --- /dev/null +++ lldb/test/API/lang/cpp/step-into-namespace/main.cpp @@ -0,0 +1,6 @@ +#include "foo.h" + +int main(void) { + foo::foo(); // Set a breakpoint here +} +