1
0
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:
Richard Trieu 2016-03-09 06:31:25 +00:00
parent 65339d559f
commit 0068b48338

View File

@ -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;