|
@@ -34,7 +34,7 @@
|
|
|
{$ifdef FPC_INCLUDE_SOFTWARE_SHIFT_INT64}
|
|
|
|
|
|
{$ifndef FPC_SYSTEM_HAS_SHL_QWORD}
|
|
|
- function fpc_shl_qword(value : qword;shift : sizeint) : qword; [public,alias: 'FPC_SHL_QWORD']; compilerproc;
|
|
|
+ function fpc_shl_qword(value : qword;shift : ALUUInt) : qword; [public,alias: 'FPC_SHL_QWORD']; compilerproc;
|
|
|
begin
|
|
|
shift:=shift and 63;
|
|
|
if shift=0 then
|
|
@@ -54,7 +54,7 @@
|
|
|
|
|
|
|
|
|
{$ifndef FPC_SYSTEM_HAS_SHL_ASSIGN_QWORD}
|
|
|
- procedure fpc_shl_assign_qword(var value : qword;shift : sizeint); [public,alias: 'FPC_SHL_ASSIGN_QWORD']; compilerproc;
|
|
|
+ procedure fpc_shl_assign_qword(var value : qword;shift : ALUUInt); [public,alias: 'FPC_SHL_ASSIGN_QWORD']; compilerproc;
|
|
|
begin
|
|
|
shift:=shift and 63;
|
|
|
if shift<>0 then
|
|
@@ -75,7 +75,7 @@
|
|
|
|
|
|
|
|
|
{$ifndef FPC_SYSTEM_HAS_SHR_QWORD}
|
|
|
- function fpc_shr_qword(value : qword;shift : sizeint) : qword; [public,alias: 'FPC_SHR_QWORD']; compilerproc;
|
|
|
+ function fpc_shr_qword(value : qword;shift : ALUUInt) : qword; [public,alias: 'FPC_SHR_QWORD']; compilerproc;
|
|
|
begin
|
|
|
shift:=shift and 63;
|
|
|
if shift=0 then
|
|
@@ -95,7 +95,7 @@
|
|
|
|
|
|
|
|
|
{$ifndef FPC_SYSTEM_HAS_SHR_ASSIGN_QWORD}
|
|
|
- procedure fpc_shr_assign_qword(var value : qword;shift : sizeint); [public,alias: 'FPC_SHR_ASSIGN_QWORD']; compilerproc;
|
|
|
+ procedure fpc_shr_assign_qword(var value : qword;shift : ALUUInt); [public,alias: 'FPC_SHR_ASSIGN_QWORD']; compilerproc;
|
|
|
begin
|
|
|
shift:=shift and 63;
|
|
|
if shift<>0 then
|
|
@@ -116,7 +116,7 @@
|
|
|
|
|
|
|
|
|
{$ifndef FPC_SYSTEM_HAS_SHL_INT64}
|
|
|
- function fpc_shl_int64(value : int64;shift : sizeint) : int64; [public,alias: 'FPC_SHL_INT64']; compilerproc;
|
|
|
+ function fpc_shl_int64(value : int64;shift : ALUUInt) : int64; [public,alias: 'FPC_SHL_INT64']; compilerproc;
|
|
|
begin
|
|
|
shift:=shift and 63;
|
|
|
if shift=0 then
|
|
@@ -136,7 +136,7 @@
|
|
|
|
|
|
|
|
|
{$ifndef FPC_SYSTEM_HAS_SHL_ASSIGN_INT64}
|
|
|
- procedure fpc_shl_assign_int64(var value : int64;shift : sizeint); [public,alias: 'FPC_SHL_ASSIGN_INT64']; compilerproc;
|
|
|
+ procedure fpc_shl_assign_int64(var value : int64;shift : ALUUInt); [public,alias: 'FPC_SHL_ASSIGN_INT64']; compilerproc;
|
|
|
begin
|
|
|
shift:=shift and 63;
|
|
|
if shift<>0 then
|
|
@@ -157,7 +157,7 @@
|
|
|
|
|
|
|
|
|
{$ifndef FPC_SYSTEM_HAS_SHR_INT64}
|
|
|
- function fpc_shr_int64(value : int64;shift : sizeint) : int64; [public,alias: 'FPC_SHR_INT64']; compilerproc;
|
|
|
+ function fpc_shr_int64(value : int64;shift : ALUUInt) : int64; [public,alias: 'FPC_SHR_INT64']; compilerproc;
|
|
|
begin
|
|
|
shift:=shift and 63;
|
|
|
if shift=0 then
|
|
@@ -177,7 +177,7 @@
|
|
|
|
|
|
|
|
|
{$ifndef FPC_SYSTEM_HAS_SHR_ASSIGN_INT64}
|
|
|
- procedure fpc_shr_assign_int64(var value : int64;shift : sizeint); [public,alias: 'FPC_SHR_ASSIGN_INT64']; compilerproc;
|
|
|
+ procedure fpc_shr_assign_int64(var value : int64;shift : ALUUInt); [public,alias: 'FPC_SHR_ASSIGN_INT64']; compilerproc;
|
|
|
begin
|
|
|
shift:=shift and 63;
|
|
|
if shift<>0 then
|