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 4bfd0d4 commit 94ebbb5Copy full SHA for 94ebbb5
lldb/source/Plugins/LanguageRuntime/Swift/SwiftLanguageRuntimeNames.cpp
@@ -60,7 +60,7 @@ enum class ThunkAction {
60
static swift::Demangle::NodePointer
61
childAtPath(swift::Demangle::NodePointer node,
62
llvm::ArrayRef<swift::Demangle::Node::Kind> path) {
63
- if (!node || path.empty())
+ if (!node || !node->hasChildren() || path.empty())
64
return node;
65
66
auto current_step = path.front();
0 commit comments