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:
parent
b4ac12436d
commit
44fcd6336a
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user