Skip to content

Commit 1747631

Browse files
committed
[lldb] Change GetTrapHandlerUnwindPlan interface
1 parent f20b5de commit 1747631

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lldb/source/Plugins/Platform/AIX/PlatformAIX.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,8 @@ void PlatformAIX::GetStatus(Stream &strm) {
132132

133133
void PlatformAIX::CalculateTrapHandlerSymbolNames() {}
134134

135-
lldb::UnwindPlanSP
136-
PlatformAIX::GetTrapHandlerUnwindPlan(const llvm::Triple &triple,
137-
ConstString name) {
135+
lldb::UnwindPlanSP PlatformAIX::GetTrapHandlerUnwindPlan(const ArchSpec &arch,
136+
ConstString name) {
138137
return {};
139138
}
140139

lldb/source/Plugins/Platform/AIX/PlatformAIX.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class PlatformAIX : public PlatformPOSIX {
4747

4848
void CalculateTrapHandlerSymbolNames() override;
4949

50-
lldb::UnwindPlanSP GetTrapHandlerUnwindPlan(const llvm::Triple &triple,
50+
lldb::UnwindPlanSP GetTrapHandlerUnwindPlan(const ArchSpec &arch,
5151
ConstString name) override;
5252

5353
MmapArgList GetMmapArgumentList(const ArchSpec &arch, lldb::addr_t addr,

0 commit comments

Comments
 (0)