diff options
Diffstat (limited to 'src/asm2wasm.h')
-rw-r--r-- | src/asm2wasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asm2wasm.h b/src/asm2wasm.h index 95a5ba481..5fdb5f364 100644 --- a/src/asm2wasm.h +++ b/src/asm2wasm.h @@ -457,7 +457,7 @@ private: void allocateGlobal(IString name, Type type, Literal value = Literal()) { assert(mappedGlobals.find(name) == mappedGlobals.end()); if (value.type == Type::none) { - value = Literal::makeZero(type); + value = Literal::makeSingleZero(type); } mappedGlobals.emplace(name, MappedGlobal(type)); wasm.addGlobal(builder.makeGlobal( |