File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
lldb/source/Plugins/LanguageRuntime/Swift Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -2298,14 +2298,12 @@ GetAsyncUnwindRegisterNumbers(llvm::Triple::ArchType triple) {
2298
2298
case llvm::Triple::x86_64: {
2299
2299
AsyncUnwindRegisterNumbers regnums;
2300
2300
regnums.async_ctx_regnum = dwarf_r14_x86_64;
2301
- regnums.fp_regnum = dwarf_rbp_x86_64;
2302
2301
regnums.pc_regnum = dwarf_rip_x86_64;
2303
2302
return regnums;
2304
2303
}
2305
2304
case llvm::Triple::aarch64: {
2306
2305
AsyncUnwindRegisterNumbers regnums;
2307
2306
regnums.async_ctx_regnum = arm64_dwarf::x22;
2308
- regnums.fp_regnum = arm64_dwarf::fp;
2309
2307
regnums.pc_regnum = arm64_dwarf::pc;
2310
2308
return regnums;
2311
2309
}
Original file line number Diff line number Diff line change @@ -839,7 +839,6 @@ class SwiftLanguageRuntime : public LanguageRuntime {
839
839
// / For UnwindPlans, these use eh_frame / dwarf register numbering.
840
840
struct AsyncUnwindRegisterNumbers {
841
841
uint32_t async_ctx_regnum;
842
- uint32_t fp_regnum;
843
842
uint32_t pc_regnum;
844
843
845
844
// / All register numbers in this struct are given in the eRegisterKindDWARF
You can’t perform that action at this time.
0 commit comments