[LLDB][MIPS64] Adding mips64 reaturn address register for unwind plan

llvm-svn: 250267
This commit is contained in:
Mohit K. Bhakkad 2015-10-14 05:20:03 +00:00
parent 1129a00abf
commit 87ef39a6a8
1 changed files with 1 additions and 0 deletions

View File

@ -738,6 +738,7 @@ EmulateInstructionMIPS64::CreateFunctionEntryUnwind (UnwindPlan &unwind_plan)
unwind_plan.SetSourceName ("EmulateInstructionMIPS64");
unwind_plan.SetSourcedFromCompiler (eLazyBoolNo);
unwind_plan.SetUnwindPlanValidAtAllInstructions (eLazyBoolYes);
unwind_plan.SetReturnAddressRegister (dwarf_ra_mips64);
return true;
}