mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[TableGen] Delete unused Record::resolveReferencesTo() after D44478. NFC
This commit is contained in:
parent
1e2d4bd6f8
commit
b8f75260a2
@ -1604,11 +1604,6 @@ public:
|
||||
/// recursion / infinite loops.
|
||||
void resolveReferences(Resolver &R, const RecordVal *SkipVal = nullptr);
|
||||
|
||||
/// If anything in this record refers to RV, replace the
|
||||
/// reference to RV with the RHS of RV. If RV is null, we resolve all
|
||||
/// possible references.
|
||||
void resolveReferencesTo(const RecordVal *RV);
|
||||
|
||||
RecordKeeper &getRecords() const {
|
||||
return TrackedRecords;
|
||||
}
|
||||
|
@ -2156,11 +2156,6 @@ void Record::resolveReferences() {
|
||||
resolveReferences(R);
|
||||
}
|
||||
|
||||
void Record::resolveReferencesTo(const RecordVal *RV) {
|
||||
RecordValResolver R(*this, RV);
|
||||
resolveReferences(R, RV);
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void Record::dump() const { errs() << *this; }
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user