Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / tw10931.pp
Size: Mime:
{ %opt=-Cr -CO- -Sew -vw }

var
  a: PtrUInt;
  q: qword;
begin
  a := not(ptruint(7));
{$ifdef cpu64}
  if a<>ptruint($fffffffffffffff8) then
{$else}
  if a<>$fffffff8 then
{$endif}
    halt(1);
  q := not(qword(7));
  if q<>qword($fffffffffffffff8) then
    halt(2);
  a := 99;
  WriteLn((a + 9) and not PtrUInt(7));
  if ((a + 9) and not PtrUInt(7))<>$68 then
    halt(3);
end.