Fix problem with uninitilialized bool found by asan.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@262934 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Manuel Klimek 2016-03-08 16:17:48 +00:00
parent 965326494a
commit 8b37c12900

View File

@ -149,7 +149,7 @@ class MachineFunction {
/// the attribute itself.
/// This is used to limit optimizations which cannot reason
/// about the control flow of such functions.
bool ExposesReturnsTwice;
bool ExposesReturnsTwice = false;
/// True if the function includes any inline assembly.
bool HasInlineAsm;