File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lldb/source/Plugins/UnwindAssembly/InstEmulation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -507,12 +507,12 @@ bool UnwindAssemblyInstEmulation::WriteRegister(
507507 case EmulateInstruction::eContextRelativeBranchImmediate: {
508508 if (context.GetInfoType () == EmulateInstruction::eInfoTypeISAAndImmediate &&
509509 context.info .ISAAndImmediate .unsigned_data32 > 0 ) {
510- m_forward_branch_offset =
511- context.info .ISAAndImmediateSigned .signed_data32 ;
510+ m_forward_branch_offset = context.info .ISAAndImmediate .unsigned_data32 ;
512511 } else if (context.GetInfoType () ==
513512 EmulateInstruction::eInfoTypeISAAndImmediateSigned &&
514513 context.info .ISAAndImmediateSigned .signed_data32 > 0 ) {
515- m_forward_branch_offset = context.info .ISAAndImmediate .unsigned_data32 ;
514+ m_forward_branch_offset =
515+ context.info .ISAAndImmediateSigned .signed_data32 ;
516516 } else if (context.GetInfoType () ==
517517 EmulateInstruction::eInfoTypeImmediate &&
518518 context.info .unsigned_immediate > 0 ) {
You can’t perform that action at this time.
0 commit comments