mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:38:31 +02:00
+ seg(<procvardef>) returns the segment stored in the procedure variable
git-svn-id: trunk@38216 -
This commit is contained in:
parent
e5b376f3be
commit
6400d612e8
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -11488,6 +11488,7 @@ tests/tbs/tb0634.pp svneol=native#text/pascal
|
||||
tests/tbs/tb0635.pp svneol=native#text/pascal
|
||||
tests/tbs/tb0636.pp svneol=native#text/pascal
|
||||
tests/tbs/tb0637.pp svneol=native#text/pascal
|
||||
tests/tbs/tb0638.pp svneol=native#text/pascal
|
||||
tests/tbs/tb205.pp svneol=native#text/plain
|
||||
tests/tbs/tb610.pp svneol=native#text/pascal
|
||||
tests/tbs/tb613.pp svneol=native#text/plain
|
||||
|
@ -204,6 +204,14 @@ implementation
|
||||
location_reset(location,LOC_REGISTER,OS_16);
|
||||
location.register:=cg.GetNextReg(left.location.register);
|
||||
end;
|
||||
LOC_CREFERENCE,LOC_REFERENCE:
|
||||
begin
|
||||
location_reset(location,LOC_REGISTER,OS_16);
|
||||
segref:=left.location.reference;
|
||||
inc(segref.offset,2);
|
||||
location.register:=cg.getintregister(current_asmdata.CurrAsmList,OS_16);
|
||||
current_asmdata.CurrAsmList.concat(Taicpu.op_ref_reg(A_MOV,S_W,segref,location.register));
|
||||
end;
|
||||
else
|
||||
internalerror(2017121301);
|
||||
end;
|
||||
|
14
tests/tbs/tb0638.pp
Normal file
14
tests/tbs/tb0638.pp
Normal file
@ -0,0 +1,14 @@
|
||||
{ %cpu=i8086 }
|
||||
{$MODE TP}
|
||||
program tsegie;
|
||||
|
||||
var
|
||||
a: procedure;
|
||||
b: word;
|
||||
|
||||
begin
|
||||
a:=nil;
|
||||
b:=seg(a);
|
||||
if b<>0 then
|
||||
halt(1);
|
||||
end.
|
Loading…
Reference in New Issue
Block a user