forked from OSchip/llvm-project
Revert "[WebAssembly][NFC] Refactor table handling in WebAssembly::wasmSymbolSetType"
This reverts commit 8ccc7e0aa4
.
Wrong version of the patch was pushed.
This commit is contained in:
parent
8ccc7e0aa4
commit
4dc46a174b
|
@ -179,14 +179,19 @@ void WebAssembly::wasmSymbolSetType(MCSymbolWasm *Sym, const Type *GlobalVT,
|
|||
bool IsTable = false;
|
||||
if (GlobalVT->isArrayTy() &&
|
||||
WebAssembly::isRefType(GlobalVT->getArrayElementType())) {
|
||||
MVT VT;
|
||||
IsTable = true;
|
||||
const Type *ElTy = GlobalVT->getArrayElementType();
|
||||
if (WebAssembly::isExternRefType(ElTy))
|
||||
Type = wasm::ValType::EXTERNREF;
|
||||
else if (WebAssembly::isFuncRefType(ElTy))
|
||||
Type = wasm::ValType::FUNCREF;
|
||||
else
|
||||
report_fatal_error("unhandled reference type");
|
||||
switch (GlobalVT->getArrayElementType()->getPointerAddressSpace()) {
|
||||
case WebAssembly::WasmAddressSpace::WASM_ADDRESS_SPACE_FUNCREF:
|
||||
VT = MVT::funcref;
|
||||
break;
|
||||
case WebAssembly::WasmAddressSpace::WASM_ADDRESS_SPACE_EXTERNREF:
|
||||
VT = MVT::externref;
|
||||
break;
|
||||
default:
|
||||
report_fatal_error("unhandled address space type");
|
||||
}
|
||||
Type = WebAssembly::toValType(VT);
|
||||
} else if (VTs.size() == 1) {
|
||||
Type = WebAssembly::toValType(VTs[0]);
|
||||
} else
|
||||
|
|
Loading…
Reference in New Issue