Skip to content

Commit 975a8c2

Browse files
committed
fixup! fix check for "this" name
1 parent 9939843 commit 975a8c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ GetCXXObjectParameter(const DWARFDIE &subprogram,
198198
// specification DIEs, so we can't rely upon the name being in
199199
// the formal parameter DIE...
200200
if (char const *name = object_pointer.GetName();
201-
name && ::strcmp(name, "this") == 0)
201+
name && ::strcmp(name, "this") != 0)
202202
return {};
203203

204204
return object_pointer;

0 commit comments

Comments
 (0)