mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 09:26:15 +02:00
* catch doesn't call popaddrstack anymore, this is done now by the compiler
This commit is contained in:
parent
910e12b76a
commit
95b0c00463
@ -191,8 +191,11 @@ begin
|
|||||||
// catch !
|
// catch !
|
||||||
Catches:=ExceptObjectStack^.FObject;
|
Catches:=ExceptObjectStack^.FObject;
|
||||||
{ this can't be done, because there could be a reraise (PFV)
|
{ this can't be done, because there could be a reraise (PFV)
|
||||||
PopObjectStack; }
|
PopObjectStack;
|
||||||
PopAddrStack;
|
|
||||||
|
Also the PopAddrStack shouldn't be done, we do it now
|
||||||
|
immediatly in the exception handler (FK)
|
||||||
|
PopAddrStack; }
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -212,7 +215,10 @@ begin
|
|||||||
end;
|
end;
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.12 1999-07-26 12:11:28 florian
|
Revision 1.13 1999-07-27 08:14:15 florian
|
||||||
|
* catch doesn't call popaddrstack anymore, this is done now by the compiler
|
||||||
|
|
||||||
|
Revision 1.12 1999/07/26 12:11:28 florian
|
||||||
* reraise doesn't call popaddrstack anymode
|
* reraise doesn't call popaddrstack anymode
|
||||||
|
|
||||||
Revision 1.11 1999/06/14 00:47:35 peter
|
Revision 1.11 1999/06/14 00:47:35 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user