https://github.com/felipepiovezan updated https://github.com/llvm/llvm-project/pull/169631
>From 06bf133009f7d943d259a8aeb74c29d83868ccff Mon Sep 17 00:00:00 2001 From: Felipe de Azevedo Piovezan <[email protected]> Date: Wed, 26 Nov 2025 11:19:23 +0000 Subject: [PATCH] fix code formatting Created using spr 1.3.7 --- .../InstEmulation/UnwindAssemblyInstEmulation.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp b/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp index 21a01cc9126a0..b1a130d9fef5f 100644 --- a/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp +++ b/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp @@ -535,8 +535,7 @@ bool UnwindAssemblyInstEmulation::WriteRegister( } else if (context.GetInfoType() == EmulateInstruction::eInfoTypeISAAndImmediateSigned && context.info.ISAAndImmediateSigned.signed_data32 > 0) { - m_branch_offset = - context.info.ISAAndImmediateSigned.signed_data32; + m_branch_offset = context.info.ISAAndImmediateSigned.signed_data32; } else if (context.GetInfoType() == EmulateInstruction::eInfoTypeImmediate && context.info.unsigned_immediate > 0) { _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
