@@ -265,19 +265,13 @@ class Compilation {
265265 const bool OnlyOneDependencyFile;
266266
267267private:
268- // / Is the parser recording token hashes for each type body?
269- const bool EnableTypeFingerprints;
270-
271268 // / Helpful for debugging, but slows down the driver. So, only turn on when
272269 // / needed.
273270 const bool VerifyFineGrainedDependencyGraphAfterEveryImport;
274271 // / Helpful for debugging, but slows down the driver. So, only turn on when
275272 // / needed.
276273 const bool EmitFineGrainedDependencyDotFileAfterEveryImport;
277274
278- // / Experiment with intrafile dependencies
279- const bool FineGrainedDependenciesIncludeIntrafileOnes;
280-
281275 // / Experiment with source-range-based dependencies
282276 const bool EnableSourceRangeDependencies;
283277
@@ -319,11 +313,8 @@ class Compilation {
319313 bool ShowDriverTimeCompilation = false ,
320314 std::unique_ptr<UnifiedStatsReporter> Stats = nullptr ,
321315 bool OnlyOneDependencyFile = false ,
322- bool EnableTypeFingerprints =
323- LangOptions ().EnableTypeFingerprints,
324316 bool VerifyFineGrainedDependencyGraphAfterEveryImport = false ,
325317 bool EmitFineGrainedDependencyDotFileAfterEveryImport = false ,
326- bool FineGrainedDependenciesIncludeIntrafileOnes = false,
327318 bool EnableSourceRangeDependencies = false ,
328319 bool CompareIncrementalSchemes = false ,
329320 StringRef CompareIncrementalSchemesPath = " " ,
@@ -386,8 +377,6 @@ class Compilation {
386377 }
387378 void disableIncrementalBuild (Twine why);
388379
389- bool getEnableTypeFingerprints () const { return EnableTypeFingerprints; }
390-
391380 bool getVerifyFineGrainedDependencyGraphAfterEveryImport () const {
392381 return VerifyFineGrainedDependencyGraphAfterEveryImport;
393382 }
@@ -396,10 +385,6 @@ class Compilation {
396385 return EmitFineGrainedDependencyDotFileAfterEveryImport;
397386 }
398387
399- bool getFineGrainedDependenciesIncludeIntrafileOnes () const {
400- return FineGrainedDependenciesIncludeIntrafileOnes;
401- }
402-
403388 bool getEnableSourceRangeDependencies () const {
404389 return EnableSourceRangeDependencies;
405390 }
0 commit comments