Skip to content

[lldb/test] Stop recording fundamental return types (NFC) #2423

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lldb/source/API/SBTarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2416,13 +2416,13 @@ bool SBTarget::IsLoaded(const SBModule &module) const {

TargetSP target_sp(GetSP());
if (!target_sp)
return LLDB_RECORD_RESULT(false);
return false;

ModuleSP module_sp(module.GetSP());
if (!module_sp)
return LLDB_RECORD_RESULT(false);
return false;

return LLDB_RECORD_RESULT(module_sp->IsLoadedInTarget(target_sp.get()));
return module_sp->IsLoadedInTarget(target_sp.get());
}

lldb::SBLaunchInfo SBTarget::GetLaunchInfo() const {
Expand Down