1
0
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:
Fangrui Song 2020-04-26 01:21:36 -07:00
parent 1e2d4bd6f8
commit b8f75260a2
2 changed files with 0 additions and 10 deletions

View File

@ -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;
}

View File

@ -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