From 9df9a9cd53c0a248e60ff65745495a6dec7cfcfe Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Thu, 21 Apr 2016 06:43:41 +0000 Subject: [PATCH] ThinLTO: initialize variables From: Mehdi Amini llvm-svn: 266964 --- llvm/include/llvm/LTO/ThinLTOCodeGenerator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/LTO/ThinLTOCodeGenerator.h b/llvm/include/llvm/LTO/ThinLTOCodeGenerator.h index bc888bc..d6acd70 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 -- 2.7.4