diff options
author | Raphael Isemann <teemperor@gmail.com> | 2018-08-23 22:40:54 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2018-08-23 22:40:54 +0000 |
commit | d2b0862f7f6084c73aeeb21fea736cddf6405b15 (patch) | |
tree | 50c732eba6bbcd534c2f574035d2cb5d19cc69ba /lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h | |
parent | 2a813ef208283980598202ac6453f3a777c608f5 (diff) | |
download | bcm5719-llvm-d2b0862f7f6084c73aeeb21fea736cddf6405b15.tar.gz bcm5719-llvm-d2b0862f7f6084c73aeeb21fea736cddf6405b15.zip |
Reuse the SelectorTable from Clang's Preprocessor
Summary:
At the moment we create our own SelectorTable even though the Preprocessor always
creates one for us that we can (and should) reuse.
Reviewers: vsk
Reviewed By: vsk
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D51185
llvm-svn: 340585
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h index 42106579e37..6b17c6d5fb3 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h @@ -149,8 +149,6 @@ private: m_file_manager; ///< The Clang file manager object used by the compiler std::unique_ptr<clang::CompilerInstance> m_compiler; ///< The Clang compiler used to parse expressions into IR - std::unique_ptr<clang::SelectorTable> - m_selector_table; ///< Selector table for Objective-C methods std::unique_ptr<clang::CodeGenerator> m_code_generator; ///< The Clang object that generates IR |