mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-16 08:29:43 +00:00
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:
parent
965326494a
commit
8b37c12900
@ -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…
Reference in New Issue
Block a user