Details
Details
Diff Detail
Diff Detail
Event Timeline
| lld/wasm/SyntheticSections.cpp | ||
|---|---|---|
| 185 | 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) | |
clang-format: please reformat the code
- import.Global = { static_cast<uint8_t>(ptrType), true}; + import.Global = {static_cast<uint8_t>(ptrType), true};