Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
lld/wasm/SyntheticSections.cpp | ||
---|---|---|
187 | Elsewhere in the code I see this pattern: wasmGlobal.Type = {uint8_t(is64 ? WASM_TYPE_I64 : WASM_TYPE_I32), isMutable}; Can we declare a function-scope is64 and use it like this? (especially since config->is64.getValueOr(false) is also used above in this function) |
Elsewhere in the code I see this pattern:
wasmGlobal.Type = {uint8_t(is64 ? WASM_TYPE_I64 : WASM_TYPE_I32), isMutable};
Can we declare a function-scope is64 and use it like this? (especially since config->is64.getValueOr(false) is also used above in this function)