|
@@ -3711,6 +3711,10 @@ implementation
|
|
refobjsec:=objreloc.objsection
|
|
refobjsec:=objreloc.objsection
|
|
else if assigned(objreloc.group) then
|
|
else if assigned(objreloc.group) then
|
|
refgrp:=objreloc.group
|
|
refgrp:=objreloc.group
|
|
|
|
+{$ifdef WASM}
|
|
|
|
+ else if objreloc.ftype=Ord(RELOC_TYPE_INDEX_LEB) then
|
|
|
|
+ {nothing}
|
|
|
|
+{$endif WASM}
|
|
else
|
|
else
|
|
internalerror(200603316);
|
|
internalerror(200603316);
|
|
if assigned(exemap) then
|
|
if assigned(exemap) then
|
|
@@ -3723,6 +3727,10 @@ implementation
|
|
exemap.Add(' References '+refobjsec.fullname)
|
|
exemap.Add(' References '+refobjsec.fullname)
|
|
else if assigned(refgrp) then
|
|
else if assigned(refgrp) then
|
|
exemap.Add(' References '+refgrp.Name)
|
|
exemap.Add(' References '+refgrp.Name)
|
|
|
|
+{$ifdef WASM}
|
|
|
|
+ else if objreloc.ftype=Ord(RELOC_TYPE_INDEX_LEB) then
|
|
|
|
+ {nothing}
|
|
|
|
+{$endif WASM}
|
|
else
|
|
else
|
|
internalerror(2006033111);
|
|
internalerror(2006033111);
|
|
end;
|
|
end;
|