Skip to content

Commit 6e23bca

Browse files
author
Jordi Chauzi
committed
dpu: lldb: fix format
1 parent 862bd76 commit 6e23bca

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lldb/source/Plugins/Process/Dpu/Dpu.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,7 @@ bool Dpu::PrepareStepOverPrintfBkp(
309309

310310
if (stdout_file != NULL) {
311311
if (dpulog_read_and_display_contents_of(mram_buffer, mram_buffer_size,
312-
stdout_file) !=
313-
DPU_OK) {
312+
stdout_file) != DPU_OK) {
314313
goto PrepareStepOverPrintfBkp_err;
315314
}
316315

lldb/source/Plugins/Process/Dpu/DpuContext.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ bool DpuContext::ResumeThreads(llvm::SmallVector<uint32_t, 8> *resume_list) {
112112
}
113113
}
114114

115-
return dpu_finalize_fault_process_for_dpu(m_dpu, m_context) ==
116-
DPU_OK;
115+
return dpu_finalize_fault_process_for_dpu(m_dpu, m_context) == DPU_OK;
117116
}
118117

119118
dpu_result_t DpuContext::StepThread(uint32_t thread_index) {

0 commit comments

Comments
 (0)