1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Fix problem with uninitilialized bool found by asan.

llvm-svn: 262934
This commit is contained in:
Manuel Klimek 2016-03-08 16:17:48 +00:00
parent b4ac12436d
commit 44fcd6336a

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;