-
Notifications
You must be signed in to change notification settings - Fork 344
[lldb][NFC] Implement RTTI for DWARFASTParserSwift #7664
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[lldb][NFC] Implement RTTI for DWARFASTParserSwift #7664
Conversation
@swift-ci smoke test |
@@ -61,7 +61,8 @@ using namespace lldb; | |||
using namespace lldb_private; | |||
using namespace lldb_private::dwarf; | |||
DWARFASTParserClang::DWARFASTParserClang(TypeSystemClang &ast) | |||
: m_ast(ast), m_die_to_decl_ctx(), m_decl_ctx_to_die() {} | |||
: DWARFASTParser(Kind::DWARFASTParserClang), m_ast(ast), | |||
m_die_to_decl_ctx(), m_decl_ctx_to_die() {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This part of the commit should be made upstream.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The first two commits are cherry picks from upstream
@@ -61,7 +61,8 @@ using namespace lldb; | |||
using namespace lldb_private; | |||
using namespace lldb_private::dwarf; | |||
DWARFASTParserClang::DWARFASTParserClang(TypeSystemClang &ast) | |||
: m_ast(ast), m_die_to_decl_ctx(), m_decl_ctx_to_die() {} | |||
: DWARFASTParser(Kind::DWARFASTParserClang), m_ast(ast), | |||
m_die_to_decl_ctx(), m_decl_ctx_to_die() {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also the () initializers are redundant.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
No description provided.