@@ -265,19 +265,13 @@ class Compilation {
265
265
const bool OnlyOneDependencyFile;
266
266
267
267
private:
268
- // / Is the parser recording token hashes for each type body?
269
- const bool EnableTypeFingerprints;
270
-
271
268
// / Helpful for debugging, but slows down the driver. So, only turn on when
272
269
// / needed.
273
270
const bool VerifyFineGrainedDependencyGraphAfterEveryImport;
274
271
// / Helpful for debugging, but slows down the driver. So, only turn on when
275
272
// / needed.
276
273
const bool EmitFineGrainedDependencyDotFileAfterEveryImport;
277
274
278
- // / Experiment with intrafile dependencies
279
- const bool FineGrainedDependenciesIncludeIntrafileOnes;
280
-
281
275
// / Experiment with source-range-based dependencies
282
276
const bool EnableSourceRangeDependencies;
283
277
@@ -319,11 +313,8 @@ class Compilation {
319
313
bool ShowDriverTimeCompilation = false ,
320
314
std::unique_ptr<UnifiedStatsReporter> Stats = nullptr ,
321
315
bool OnlyOneDependencyFile = false ,
322
- bool EnableTypeFingerprints =
323
- LangOptions ().EnableTypeFingerprints,
324
316
bool VerifyFineGrainedDependencyGraphAfterEveryImport = false ,
325
317
bool EmitFineGrainedDependencyDotFileAfterEveryImport = false ,
326
- bool FineGrainedDependenciesIncludeIntrafileOnes = false,
327
318
bool EnableSourceRangeDependencies = false ,
328
319
bool CompareIncrementalSchemes = false ,
329
320
StringRef CompareIncrementalSchemesPath = " " ,
@@ -386,8 +377,6 @@ class Compilation {
386
377
}
387
378
void disableIncrementalBuild (Twine why);
388
379
389
- bool getEnableTypeFingerprints () const { return EnableTypeFingerprints; }
390
-
391
380
bool getVerifyFineGrainedDependencyGraphAfterEveryImport () const {
392
381
return VerifyFineGrainedDependencyGraphAfterEveryImport;
393
382
}
@@ -396,10 +385,6 @@ class Compilation {
396
385
return EmitFineGrainedDependencyDotFileAfterEveryImport;
397
386
}
398
387
399
- bool getFineGrainedDependenciesIncludeIntrafileOnes () const {
400
- return FineGrainedDependenciesIncludeIntrafileOnes;
401
- }
402
-
403
388
bool getEnableSourceRangeDependencies () const {
404
389
return EnableSourceRangeDependencies;
405
390
}
0 commit comments