mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:31:49 +02:00
+ support got modifier on labels
git-svn-id: trunk@47851 -
This commit is contained in:
parent
8b34e11da3
commit
33afecd117
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
@ -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
17
tests/tbs/tb0682.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user