|
@@ -331,8 +331,8 @@ interface
|
|
{# From a constant numeric value, return the abstract code generator
|
|
{# From a constant numeric value, return the abstract code generator
|
|
size.
|
|
size.
|
|
}
|
|
}
|
|
- function int_cgsize(const a: aint): tcgsize;{$ifdef USEINLINE}inline;{$endif}
|
|
|
|
- function int_float_cgsize(const a: aint): tcgsize;
|
|
|
|
|
|
+ function int_cgsize(const a: tcgint): tcgsize;{$ifdef USEINLINE}inline;{$endif}
|
|
|
|
+ function int_float_cgsize(const a: tcgint): tcgsize;
|
|
|
|
|
|
{ return the inverse condition of opcmp }
|
|
{ return the inverse condition of opcmp }
|
|
function inverse_opcmp(opcmp: topcmp): topcmp;{$ifdef USEINLINE}inline;{$endif}
|
|
function inverse_opcmp(opcmp: topcmp): topcmp;{$ifdef USEINLINE}inline;{$endif}
|
|
@@ -589,7 +589,7 @@ implementation
|
|
end;
|
|
end;
|
|
|
|
|
|
|
|
|
|
- function int_cgsize(const a: aint): tcgsize;{$ifdef USEINLINE}inline;{$endif}
|
|
|
|
|
|
+ function int_cgsize(const a: tcgint): tcgsize;{$ifdef USEINLINE}inline;{$endif}
|
|
const
|
|
const
|
|
size2cgsize : array[0..8] of tcgsize = (
|
|
size2cgsize : array[0..8] of tcgsize = (
|
|
OS_NO,OS_8,OS_16,OS_NO,OS_32,OS_NO,OS_NO,OS_NO,OS_64
|
|
OS_NO,OS_8,OS_16,OS_NO,OS_32,OS_NO,OS_NO,OS_NO,OS_64
|
|
@@ -602,7 +602,7 @@ implementation
|
|
end;
|
|
end;
|
|
|
|
|
|
|
|
|
|
- function int_float_cgsize(const a: aint): tcgsize;
|
|
|
|
|
|
+ function int_float_cgsize(const a: tcgint): tcgsize;
|
|
begin
|
|
begin
|
|
case a of
|
|
case a of
|
|
4 :
|
|
4 :
|