File tree 2 files changed +0
-10
lines changed 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -1604,11 +1604,6 @@ class Record {
1604
1604
// / recursion / infinite loops.
1605
1605
void resolveReferences (Resolver &R, const RecordVal *SkipVal = nullptr );
1606
1606
1607
- // / If anything in this record refers to RV, replace the
1608
- // / reference to RV with the RHS of RV. If RV is null, we resolve all
1609
- // / possible references.
1610
- void resolveReferencesTo (const RecordVal *RV);
1611
-
1612
1607
RecordKeeper &getRecords () const {
1613
1608
return TrackedRecords;
1614
1609
}
Original file line number Diff line number Diff line change @@ -2156,11 +2156,6 @@ void Record::resolveReferences() {
2156
2156
resolveReferences (R);
2157
2157
}
2158
2158
2159
- void Record::resolveReferencesTo (const RecordVal *RV) {
2160
- RecordValResolver R (*this , RV);
2161
- resolveReferences (R, RV);
2162
- }
2163
-
2164
2159
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2165
2160
LLVM_DUMP_METHOD void Record::dump () const { errs () << *this ; }
2166
2161
#endif
You can’t perform that action at this time.
0 commit comments