* wasm internal object reader: convert R_WASM_TAG_INDEX_LEB relocations to relocation objects

This commit is contained in:
Nikolay Nikolov 2024-01-07 01:45:27 +02:00
parent 3121f3f8a0
commit 07677f4214

View File

@ -4492,10 +4492,7 @@ implementation
R_WASM_GLOBAL_INDEX_LEB:
ObjSec.ObjRelocations.Add(TWasmObjRelocation.CreateSymbol(RelocOffset-BaseSectionOffset,SymbolTable[RelocIndex].ObjSym,RELOC_GLOBAL_INDEX_LEB));
R_WASM_TAG_INDEX_LEB:
begin
InputError('R_WASM_TAG_INDEX_LEB relocations not yet implemented');
exit;
end;
ObjSec.ObjRelocations.Add(TWasmObjRelocation.CreateSymbol(RelocOffset-BaseSectionOffset,SymbolTable[RelocIndex].ObjSym,RELOC_TAG_INDEX_LEB));
else
internalerror(2023122802);
end;