mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-31 17:10:14 +02:00
* warning of portabilitiy problems with parasize / localsize
+ some added documentation
This commit is contained in:
parent
2f89d59534
commit
eeea5fdae0
@ -39,9 +39,9 @@ interface
|
|||||||
tequaltype = (
|
tequaltype = (
|
||||||
te_incompatible,
|
te_incompatible,
|
||||||
te_convert_operator,
|
te_convert_operator,
|
||||||
te_convert_l2,
|
te_convert_l2, { compatible conversion with possible loss of data }
|
||||||
te_convert_l1,
|
te_convert_l1, { compatible conversion }
|
||||||
te_equal,
|
te_equal, { the definitions are equal }
|
||||||
te_exact
|
te_exact
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -1149,7 +1149,11 @@ implementation
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.3 2002-11-27 15:33:46 peter
|
Revision 1.4 2002-12-01 22:07:41 carl
|
||||||
|
* warning of portabilitiy problems with parasize / localsize
|
||||||
|
+ some added documentation
|
||||||
|
|
||||||
|
Revision 1.3 2002/11/27 15:33:46 peter
|
||||||
* the never ending story of tp procvar hacks
|
* the never ending story of tp procvar hacks
|
||||||
|
|
||||||
Revision 1.2 2002/11/27 02:32:14 peter
|
Revision 1.2 2002/11/27 02:32:14 peter
|
||||||
|
@ -73,6 +73,12 @@ interface
|
|||||||
gpcmodeswitches : tmodeswitches=
|
gpcmodeswitches : tmodeswitches=
|
||||||
[m_gpc,m_all];
|
[m_gpc,m_all];
|
||||||
|
|
||||||
|
{ maximum number of locals in bytes before warning is emitted }
|
||||||
|
maxlocalsize = high(smallint);
|
||||||
|
{ maximum number of paras in bytes before warning is emitted }
|
||||||
|
maxparasize = high(word);
|
||||||
|
|
||||||
|
|
||||||
type
|
type
|
||||||
pfileposinfo = ^tfileposinfo;
|
pfileposinfo = ^tfileposinfo;
|
||||||
tfileposinfo = record
|
tfileposinfo = record
|
||||||
@ -1515,7 +1521,11 @@ implementation
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.75 2002-11-30 23:13:48 carl
|
Revision 1.76 2002-12-01 22:07:41 carl
|
||||||
|
* warning of portabilitiy problems with parasize / localsize
|
||||||
|
+ some added documentation
|
||||||
|
|
||||||
|
Revision 1.75 2002/11/30 23:13:48 carl
|
||||||
- cs_fp_emulation is no longer automatic for m68k target
|
- cs_fp_emulation is no longer automatic for m68k target
|
||||||
|
|
||||||
Revision 1.74 2002/11/30 11:08:46 carl
|
Revision 1.74 2002/11/30 11:08:46 carl
|
||||||
|
Loading…
Reference in New Issue
Block a user