forked from OSchip/llvm-project
[WebAssembly] fix gcc 10 warning
This commit is contained in:
parent
baca8f977e
commit
fd0964ae83
|
@ -280,6 +280,7 @@ enum : unsigned {
|
||||||
};
|
};
|
||||||
|
|
||||||
enum : unsigned {
|
enum : unsigned {
|
||||||
|
WASM_LIMITS_FLAG_NONE = 0x0,
|
||||||
WASM_LIMITS_FLAG_HAS_MAX = 0x1,
|
WASM_LIMITS_FLAG_HAS_MAX = 0x1,
|
||||||
WASM_LIMITS_FLAG_IS_SHARED = 0x2,
|
WASM_LIMITS_FLAG_IS_SHARED = 0x2,
|
||||||
WASM_LIMITS_FLAG_IS_64 = 0x4,
|
WASM_LIMITS_FLAG_IS_64 = 0x4,
|
||||||
|
|
|
@ -1198,7 +1198,8 @@ uint64_t WasmObjectWriter::writeObject(MCAssembler &Asm,
|
||||||
MemImport.Module = "env";
|
MemImport.Module = "env";
|
||||||
MemImport.Field = "__linear_memory";
|
MemImport.Field = "__linear_memory";
|
||||||
MemImport.Kind = wasm::WASM_EXTERNAL_MEMORY;
|
MemImport.Kind = wasm::WASM_EXTERNAL_MEMORY;
|
||||||
MemImport.Memory.Flags = is64Bit() ? wasm::WASM_LIMITS_FLAG_IS_64 : 0;
|
MemImport.Memory.Flags = is64Bit() ? wasm::WASM_LIMITS_FLAG_IS_64
|
||||||
|
: wasm::WASM_LIMITS_FLAG_NONE;
|
||||||
Imports.push_back(MemImport);
|
Imports.push_back(MemImport);
|
||||||
|
|
||||||
// For now, always emit the table section, since indirect calls are not
|
// For now, always emit the table section, since indirect calls are not
|
||||||
|
|
Loading…
Reference in New Issue