File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lldb/tools/lldb-dap/Handler Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -147,9 +147,9 @@ static DisassembledInstruction ConvertSBInstructionToDisassembledInstruction(
147147
148148 // If the line number is 0 then the entry represents a compiler generated
149149 // location.
150- if (!IsAssemblySource (source) && line_entry.IsValid () &&
151- line_entry.GetStartAddress () == addr && line_entry.IsValid () &&
152- line_entry.GetFileSpec (). IsValid () && line_entry. GetLine () != 0 ) {
150+ if (!IsAssemblySource (source) && line_entry.GetStartAddress () == addr &&
151+ line_entry.IsValid () && line_entry. GetFileSpec () .IsValid () &&
152+ line_entry.GetLine () != 0 ) {
153153
154154 disassembled_inst.location = std::move (source);
155155 const auto line = line_entry.GetLine ();
You can’t perform that action at this time.
0 commit comments