File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lldb/source/Plugins/Platform/Linux Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ void PlatformLinux::CalculateTrapHandlerSymbolNames() {
205205 m_trap_handlers.push_back (ConstString (" __restore_rt" ));
206206}
207207
208- static lldb::UnwindPlanSP GetAArch64TrapHanlderUnwindPlan (ConstString name) {
208+ static lldb::UnwindPlanSP GetAArch64TrapHandlerUnwindPlan (ConstString name) {
209209 UnwindPlanSP unwind_plan_sp;
210210 if (name != " __kernel_rt_sigreturn" )
211211 return unwind_plan_sp;
@@ -290,7 +290,7 @@ lldb::UnwindPlanSP
290290PlatformLinux::GetTrapHandlerUnwindPlan (const llvm::Triple &triple,
291291 ConstString name) {
292292 if (triple.isAArch64 ())
293- return GetAArch64TrapHanlderUnwindPlan (name);
293+ return GetAArch64TrapHandlerUnwindPlan (name);
294294
295295 return {};
296296}
You can’t perform that action at this time.
0 commit comments