Skip to content

Commit a0b42b9

Browse files
authored
Merge pull request #2423 from medismailben/apple/stable/20210107
[lldb/test] Stop recording fundamental return types (NFC)
2 parents 59c26ae + 4e59474 commit a0b42b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/source/API/SBTarget.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2416,13 +2416,13 @@ bool SBTarget::IsLoaded(const SBModule &module) const {
24162416

24172417
TargetSP target_sp(GetSP());
24182418
if (!target_sp)
2419-
return LLDB_RECORD_RESULT(false);
2419+
return false;
24202420

24212421
ModuleSP module_sp(module.GetSP());
24222422
if (!module_sp)
2423-
return LLDB_RECORD_RESULT(false);
2423+
return false;
24242424

2425-
return LLDB_RECORD_RESULT(module_sp->IsLoadedInTarget(target_sp.get()));
2425+
return module_sp->IsLoadedInTarget(target_sp.get());
24262426
}
24272427

24282428
lldb::SBLaunchInfo SBTarget::GetLaunchInfo() const {

0 commit comments

Comments
 (0)