Skip to content

Commit 98a3330

Browse files
committed
Fix TestInlineStepping.py
1 parent daea9d9 commit 98a3330

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Target/ThreadPlanStepRange.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ bool ThreadPlanStepRange::SetNextBranchBreakpoint() {
434434
top_most_line_entry.file_sp = std::make_shared<SupportFile>();
435435
top_most_line_entry.ApplyFileMappings(
436436
GetThread().CalculateTarget());
437-
if (!top_most_line_entry.file_sp)
437+
if (!top_most_line_entry.file_sp->GetSpecOnly())
438438
top_most_line_entry.file_sp =
439439
top_most_line_entry.original_file_sp;
440440
}

0 commit comments

Comments
 (0)