mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-01 09:29:25 +01:00
+ moved constant from cpuinfo, these are NOT cpu specific
constant, but more related to compiler functionality.
This commit is contained in:
parent
021a0670c2
commit
86a068445b
@ -85,6 +85,12 @@ interface
|
|||||||
function FindFile(const f : string;var foundfile:string):boolean;
|
function FindFile(const f : string;var foundfile:string):boolean;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
{ the ordinal type used when evaluating constant integer expressions }
|
||||||
|
TConstExprInt = int64;
|
||||||
|
{ ... the same unsigned }
|
||||||
|
TConstExprUInt = {$ifdef fpc}qword{$else}int64{$endif};
|
||||||
|
|
||||||
var
|
var
|
||||||
{ specified inputfile }
|
{ specified inputfile }
|
||||||
inputdir : dirstr;
|
inputdir : dirstr;
|
||||||
@ -1456,7 +1462,11 @@ begin
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.53 2002-04-02 17:11:28 peter
|
Revision 1.54 2002-04-07 13:24:30 carl
|
||||||
|
+ moved constant from cpuinfo, these are NOT cpu specific
|
||||||
|
constant, but more related to compiler functionality.
|
||||||
|
|
||||||
|
Revision 1.53 2002/04/02 17:11:28 peter
|
||||||
* tlocation,treference update
|
* tlocation,treference update
|
||||||
* LOC_CONSTANT added for better constant handling
|
* LOC_CONSTANT added for better constant handling
|
||||||
* secondadd splitted in multiple routines
|
* secondadd splitted in multiple routines
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user