mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 22:30:13 +00:00
[lldb] Implement ObjCExceptionThrowFrameRecognizer::GetName()
Implement `GetName` for `ObjCExceptionThrowFrameRecognizer`. Otherwise, `frame recognizer list` shows "(internal)" for the name. Differential Revision: https://reviews.llvm.org/D89589
This commit is contained in:
parent
4242df1470
commit
f16cecf375
@ -2709,6 +2709,9 @@ class ObjCExceptionThrowFrameRecognizer : public StackFrameRecognizer {
|
||||
return lldb::RecognizedStackFrameSP(
|
||||
new ObjCExceptionRecognizedStackFrame(frame));
|
||||
};
|
||||
std::string GetName() override {
|
||||
return "ObjC Exception Throw StackFrame Recognizer";
|
||||
}
|
||||
};
|
||||
|
||||
static void RegisterObjCExceptionRecognizer(Process *process) {
|
||||
|
Loading…
Reference in New Issue
Block a user