mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
[wasm] Fix uninitialized memory introduced in r330749.
Found with MSan. This was causing all the WASM MC tests to fail about 10% of the time. llvm-svn: 330764
This commit is contained in:
parent
2331b01068
commit
19ceb6b2a0
@ -216,7 +216,7 @@ class WasmObjectWriter : public MCObjectWriter {
|
||||
std::vector<WasmCustomSection> CustomSections;
|
||||
unsigned NumFunctionImports = 0;
|
||||
unsigned NumGlobalImports = 0;
|
||||
uint32_t SectionCount;
|
||||
uint32_t SectionCount = 0;
|
||||
|
||||
// TargetObjectWriter wrappers.
|
||||
bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
|
||||
|
Loading…
Reference in New Issue
Block a user