mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-09 09:49:16 +02:00
Disable range check in m68k:tiscv32 and riscv64 cgcpu units
git-svn-id: trunk@40319 -
This commit is contained in:
parent
7c92412c74
commit
53a27fe7b3
@ -138,6 +138,9 @@ unit cgcpu;
|
||||
symsym,symtable,defutil,paramgr,procinfo,
|
||||
rgobj,tgobj,rgcpu,fmodule;
|
||||
|
||||
{ Range check must be disabled explicitly as conversions between signed and unsigned
|
||||
32-bit values are done without explicit typecasts }
|
||||
{$R-}
|
||||
|
||||
const
|
||||
{ opcode table lookup }
|
||||
|
@ -69,6 +69,9 @@ unit cgcpu;
|
||||
symconst,symsym,fmodule,
|
||||
rgobj,tgobj,cpupi,procinfo,paramgr;
|
||||
|
||||
{ Range check must be disabled explicitly as conversions between signed and unsigned
|
||||
32-bit values are done without explicit typecasts }
|
||||
{$R-}
|
||||
|
||||
procedure tcgrv32.init_register_allocators;
|
||||
begin
|
||||
|
@ -63,6 +63,9 @@ implementation
|
||||
symconst, fmodule, symtable,
|
||||
rgobj, tgobj, cpupi, procinfo, paramgr, cpupara;
|
||||
|
||||
{ Range check must be disabled explicitly as conversions between signed and unsigned
|
||||
64-bit and 32-bit values are done without explicit typecasts }
|
||||
{$R-}
|
||||
|
||||
procedure tcgrv64.init_register_allocators;
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user