mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 23:09:40 +02:00
* use ObjpasInt, instead of nativeint in fpc_div_dword and fpc_mod_dword
git-svn-id: trunk@27236 -
This commit is contained in:
parent
ec9a57f854
commit
e471a7dd2c
@ -1356,7 +1356,7 @@ end;
|
||||
{$ifndef FPC_SYSTEM_HAS_DIV_DWORD}
|
||||
function fpc_div_dword(n,z : dword) : dword; [public,alias: 'FPC_DIV_DWORD']; compilerproc;
|
||||
var
|
||||
shift,lzz,lzn : nativeint;
|
||||
shift,lzz,lzn : ObjpasInt;
|
||||
begin
|
||||
result:=0;
|
||||
if n=0 then
|
||||
@ -1388,7 +1388,7 @@ function fpc_div_dword(n,z : dword) : dword; [public,alias: 'FPC_DIV_DWORD']; co
|
||||
{$ifndef FPC_SYSTEM_HAS_MOD_DWORD}
|
||||
function fpc_mod_dword(n,z : dword) : dword; [public,alias: 'FPC_MOD_DWORD']; compilerproc;
|
||||
var
|
||||
shift,lzz,lzn : nativeint;
|
||||
shift,lzz,lzn : ObjpasInt;
|
||||
begin
|
||||
result:=0;
|
||||
if n=0 then
|
||||
|
Loading…
Reference in New Issue
Block a user