mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[WebAssembly] fix gcc 10 warning
This commit is contained in:
parent
8b0004cdf7
commit
581ce5f5c9
@ -280,6 +280,7 @@ enum : unsigned {
|
||||
};
|
||||
|
||||
enum : unsigned {
|
||||
WASM_LIMITS_FLAG_NONE = 0x0,
|
||||
WASM_LIMITS_FLAG_HAS_MAX = 0x1,
|
||||
WASM_LIMITS_FLAG_IS_SHARED = 0x2,
|
||||
WASM_LIMITS_FLAG_IS_64 = 0x4,
|
||||
|
@ -1198,7 +1198,8 @@ uint64_t WasmObjectWriter::writeObject(MCAssembler &Asm,
|
||||
MemImport.Module = "env";
|
||||
MemImport.Field = "__linear_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);
|
||||
|
||||
// For now, always emit the table section, since indirect calls are not
|
||||
|
Loading…
Reference in New Issue
Block a user