fpc/tests/webtbs/tw36079.pp
florian fabe4cc067 * patch by Christo Crause: reg. allocation information if non-volatile registers
are used for parameter passing as it is might happen on avr, resolves 

git-svn-id: trunk@43390 -
2019-11-04 20:14:46 +00:00

18 lines
228 B
ObjectPascal

{ %OPT=-O- -O1 }
program tshlshr;
procedure test(value, required: int64);
begin
if value <> required then
halt(1)
else
halt(0);
end;
var
longres : longint;
begin
longres := 32768;
test(longres, 32768);
end.