mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 14:29:14 +02:00
* fixed range check errors
This commit is contained in:
parent
39b4e0398a
commit
c98d2211bc
@ -456,7 +456,7 @@ implementation
|
|||||||
ait_const_32bit,
|
ait_const_32bit,
|
||||||
ait_const_8bit,
|
ait_const_8bit,
|
||||||
ait_const_16bit : begin
|
ait_const_16bit : begin
|
||||||
AsmWrite(ait_const2str[hp.typ]+tostr(tai_const(hp).value));
|
AsmWrite(ait_const2str[hp.typ]+tostru(tai_const(hp).value));
|
||||||
consttyp:=hp.typ;
|
consttyp:=hp.typ;
|
||||||
l:=0;
|
l:=0;
|
||||||
repeat
|
repeat
|
||||||
@ -464,7 +464,7 @@ implementation
|
|||||||
if found then
|
if found then
|
||||||
begin
|
begin
|
||||||
hp:=tai(hp.next);
|
hp:=tai(hp.next);
|
||||||
s:=','+tostr(tai_const(hp).value);
|
s:=','+tostru(tai_const(hp).value);
|
||||||
AsmWrite(s);
|
AsmWrite(s);
|
||||||
inc(l,length(s));
|
inc(l,length(s));
|
||||||
end;
|
end;
|
||||||
@ -875,7 +875,10 @@ initialization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.43 2003-10-21 15:15:36 peter
|
Revision 1.44 2003-12-14 22:42:39 peter
|
||||||
|
* fixed range check errors
|
||||||
|
|
||||||
|
Revision 1.43 2003/10/21 15:15:36 peter
|
||||||
* taicpu_abstract.oper[] changed to pointers
|
* taicpu_abstract.oper[] changed to pointers
|
||||||
|
|
||||||
Revision 1.42 2003/10/19 01:34:30 florian
|
Revision 1.42 2003/10/19 01:34:30 florian
|
||||||
|
@ -486,7 +486,7 @@ interface
|
|||||||
ait_const_16bit,
|
ait_const_16bit,
|
||||||
ait_const_8bit :
|
ait_const_8bit :
|
||||||
begin
|
begin
|
||||||
AsmWrite(ait_const2str[hp.typ]+tostr(tai_const(hp).value));
|
AsmWrite(ait_const2str[hp.typ]+tostru(tai_const(hp).value));
|
||||||
consttyp:=hp.typ;
|
consttyp:=hp.typ;
|
||||||
l:=0;
|
l:=0;
|
||||||
repeat
|
repeat
|
||||||
@ -494,7 +494,7 @@ interface
|
|||||||
if found then
|
if found then
|
||||||
begin
|
begin
|
||||||
hp:=tai(hp.next);
|
hp:=tai(hp.next);
|
||||||
s:=','+tostr(tai_const(hp).value);
|
s:=','+tostru(tai_const(hp).value);
|
||||||
AsmWrite(s);
|
AsmWrite(s);
|
||||||
inc(l,length(s));
|
inc(l,length(s));
|
||||||
end;
|
end;
|
||||||
@ -920,7 +920,10 @@ initialization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.42 2003-11-29 15:53:06 florian
|
Revision 1.43 2003-12-14 22:42:39 peter
|
||||||
|
* fixed range check errors
|
||||||
|
|
||||||
|
Revision 1.42 2003/11/29 15:53:06 florian
|
||||||
+ nasmelf mode for BeOS
|
+ nasmelf mode for BeOS
|
||||||
+ DQWORD directive in intel assembler mode
|
+ DQWORD directive in intel assembler mode
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user