-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[NFC][TableGen] Delete unused class member #113165
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
[NFC][TableGen] Delete unused class member #113165
Conversation
@llvm/pr-subscribers-tablegen Author: Rahul Joshi (jurahul) ChangesDelete unused class member in Full diff: https://github.com/llvm/llvm-project/pull/113165.diff 1 Files Affected:
diff --git a/llvm/utils/TableGen/SearchableTableEmitter.cpp b/llvm/utils/TableGen/SearchableTableEmitter.cpp
index 4bf4df692acb47..91fde0c6630577 100644
--- a/llvm/utils/TableGen/SearchableTableEmitter.cpp
+++ b/llvm/utils/TableGen/SearchableTableEmitter.cpp
@@ -96,7 +96,6 @@ struct GenericTable {
class SearchableTableEmitter {
const RecordKeeper &Records;
std::unique_ptr<CodeGenTarget> Target;
- std::unique_ptr<CodeGenIntrinsicMap> Intrinsics;
std::vector<std::unique_ptr<GenericEnum>> Enums;
DenseMap<const Record *, GenericEnum *> EnumMap;
std::set<std::string> PreprocessorGuards;
|
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. Thanks!
Delete unused class member in `SearchableTableEmitter` class.
4b96d6d
to
4d3e4a4
Compare
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/134/builds/7265 Here is the relevant piece of the build log for the reference
|
Delete unused class member in
SearchableTableEmitter
class.