+ support got modifier on labels

git-svn-id: trunk@47851 -
This commit is contained in:
florian 2020-12-26 18:51:45 +00:00
parent 8b34e11da3
commit 33afecd117
3 changed files with 20 additions and 0 deletions

1
.gitattributes vendored
View File

@ -13435,6 +13435,7 @@ tests/tbs/tb0678.pp svneol=native#text/pascal
tests/tbs/tb0679.pp svneol=native#text/pascal
tests/tbs/tb0680.pp svneol=native#text/pascal
tests/tbs/tb0681.pp svneol=native#text/pascal
tests/tbs/tb0682.pp svneol=native#text/pascal
tests/tbs/ub0060.pp svneol=native#text/plain
tests/tbs/ub0069.pp svneol=native#text/plain
tests/tbs/ub0119.pp svneol=native#text/plain

View File

@ -649,6 +649,7 @@ Implementation
CreateLocalLabel(actasmpattern,hl,false);
Consume(AS_ID);
AddLabelOperand(hl);
MaybeGetPICModifier(oper);
end
else
{ Check for label }
@ -656,6 +657,7 @@ Implementation
begin
Consume(AS_ID);
AddLabelOperand(hl);
MaybeGetPICModifier(oper);
end
else
{ probably a variable or normal expression }

17
tests/tbs/tb0682.pp Normal file
View File

@ -0,0 +1,17 @@
{ %target=linux,openbsd,netbsd,freebsd }
{ %cpu=i386 }
{ %norun }
{$goto on }
label
l;
begin
asm
movl l@GOT(%eax),%eax
l:
end;
asm
movl .Ll@GOT(%eax),%eax
.Ll:
end;
end.