mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
12 lines
287 B
ObjectPascal
12 lines
287 B
ObjectPascal
{ %opt=-O2 }
|
|
{ %norun }
|
|
function InternalInt64ToInt8(Value: Int64; Dest: IntPtr; IgnoreConvertErrors: Boolean): Boolean;
|
|
begin
|
|
if (Value and $FFFFFFFFFFFFFF80 <> 0) and (Value and $FFFFFFFFFFFFFF80 <> $FFFFFFFFFFFFFF80) then begin
|
|
// remainder not relevant
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
end.
|