fpc/tests/webtbs/tw18082.pp
Jonas Maebe 5cbe12c622 * don't overwrite the target value of interlockedcompareexchange*() if the
value is different from the comparand (patch by "FVI", mantis #18082)
  * sign extend the loaded value of interlockedcompareexchange() on PowerPC64,
    because the function arguments are longints

git-svn-id: trunk@16475 -
2010-11-29 12:53:10 +00:00

30 lines
503 B
ObjectPascal

var
l: longint;
{$ifdef cpu64}
i: int64;
{$endif}
begin
l:=-123;
if interlockedcompareexchange(l,-1,124)<>-123 then
halt(1);
if l<>-123 then
halt(2);
if interlockedcompareexchange(l,-1,-123)<>-123 then
halt(3);
if l<>-1 then
halt(4);
{$ifdef cpu64}
i:=-123;
if interlockedcompareexchange64(i,-1,124)<>-123 then
halt(5);
if i<>-123 then
halt(6);
if interlockedcompareexchange64(i,-1,-123)<>-123 then
halt(7);
if i<>-1 then
halt(8);
{$endif}
end.