diff options
-rw-r--r-- | llvm/include/llvm/LTO/ThinLTOCodeGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/LTO/ThinLTOCodeGenerator.h b/llvm/include/llvm/LTO/ThinLTOCodeGenerator.h index bc888bc892f..d6acd70b1c6 100644 --- a/llvm/include/llvm/LTO/ThinLTOCodeGenerator.h +++ b/llvm/include/llvm/LTO/ThinLTOCodeGenerator.h @@ -110,8 +110,8 @@ public: struct CachingOptions { std::string Path; int PruningInterval = -1; // seconds, -1 to disable pruning - unsigned int Expiration; // seconds. - unsigned MaxPercentageOfAvailableSpace; // percentage. + unsigned int Expiration = 0; // seconds. + unsigned MaxPercentageOfAvailableSpace = 0; // percentage. }; /// Provide a path to a directory where to store the cached files for |