Skip to content

Commit febc4ff

Browse files
committed
[lldb][AArch64][NFC] Fix typo in get trap handler function
1 parent 858d6a1 commit febc4ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
290290
PlatformLinux::GetTrapHandlerUnwindPlan(const llvm::Triple &triple,
291291
ConstString name) {
292292
if (triple.isAArch64())
293-
return GetAArch64TrapHanlderUnwindPlan(name);
293+
return GetAArch64TrapHandlerUnwindPlan(name);
294294

295295
return {};
296296
}

0 commit comments

Comments
 (0)