mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
Fix uninitialized member bool. Detected by ASan.
llvm-svn: 262999
This commit is contained in:
parent
65339d559f
commit
0068b48338
@ -152,7 +152,7 @@ class MachineFunction {
|
||||
bool ExposesReturnsTwice = false;
|
||||
|
||||
/// True if the function includes any inline assembly.
|
||||
bool HasInlineAsm;
|
||||
bool HasInlineAsm = false;
|
||||
|
||||
// Allocation management for pseudo source values.
|
||||
std::unique_ptr<PseudoSourceValueManager> PSVManager;
|
||||
|
Loading…
Reference in New Issue
Block a user