[ThinLTO] Fix uninitialized flags.

Found by msan. Patch by Adrian Kuegel!

llvm-svn: 265133
This commit is contained in:
Benjamin Kramer 2016-04-01 11:49:59 +00:00
parent 6ba927148d
commit 398e95c181
1 changed files with 2 additions and 2 deletions

View File

@ -238,11 +238,11 @@ private:
/// Flag to enable/disable CodeGen. When set to true, the process stops after
/// optimizations and a bitcode is produced.
bool DisableCodeGen;
bool DisableCodeGen = false;
/// Flag to indicate that only the CodeGen will be performed, no cross-module
/// importing or optimization.
bool CodeGenOnly;
bool CodeGenOnly = false;
};
}
#endif