fpc/tests/webtbs/tw22490.pp
Jonas Maebe 288d1ec74a * support referencing "result" in nostackframe pure assembler routines if
the result location is a simple location (a single register/reference)
    (mantis #22490)
  * print an error when accessing "result" in a nostack pure assembler routine
    if the result location is not simple

git-svn-id: trunk@22166 -
2012-08-21 19:51:40 +00:00

12 lines
159 B
ObjectPascal

{ %cpu=i386 }
{$mode objfpc}{$ASMMODE INTEL}
function Test():byte;assembler;nostackframe;
asm
mov result,1
end;
begin
if Test()<>1 then
halt(1);
end.