* restore correct pass2 handling bug #1425 (merged)

This commit is contained in:
peter 2001-04-21 12:13:15 +00:00
parent ed290df007
commit 1fdb035bbe

View File

@ -987,7 +987,7 @@ begin
CheckIfValid:=false; CheckIfValid:=false;
{ Things which may only be done once, not when a second pass is done to { Things which may only be done once, not when a second pass is done to
optimize } optimize }
if Insentry=nil then if (Insentry=nil) or ((InsEntry^.flags and IF_PASS2)<>0) then
begin begin
{ We need intel style operands } { We need intel style operands }
SetOperandOrder(op_intel); SetOperandOrder(op_intel);
@ -1773,7 +1773,10 @@ end;
end. end.
{ {
$Log$ $Log$
Revision 1.14 2001-04-13 01:22:18 peter Revision 1.15 2001-04-21 12:13:15 peter
* restore correct pass2 handling bug 1425 (merged)
Revision 1.14 2001/04/13 01:22:18 peter
* symtable change to classes * symtable change to classes
* range check generation and errors fixed, make cycle DEBUG=1 works * range check generation and errors fixed, make cycle DEBUG=1 works
* memory leaks fixed * memory leaks fixed