mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-05 06:13:20 +01:00
* type check the exit()
This commit is contained in:
parent
07da08426d
commit
b570974cea
@ -322,6 +322,11 @@ implementation
|
||||
begin
|
||||
if assigned(p^.left) then
|
||||
begin
|
||||
firstpass(p^.left);
|
||||
if codegenerror then
|
||||
exit;
|
||||
{ Check the 2 types }
|
||||
p^.left:=gentypeconvnode(p^.left,p^.resulttype);
|
||||
firstpass(p^.left);
|
||||
p^.registers32:=p^.left^.registers32;
|
||||
p^.registersfpu:=p^.left^.registersfpu;
|
||||
@ -488,7 +493,10 @@ implementation
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.6 1999-02-22 02:15:48 peter
|
||||
Revision 1.7 1999-03-09 19:24:42 peter
|
||||
* type check the exit()
|
||||
|
||||
Revision 1.6 1999/02/22 02:15:48 peter
|
||||
* updates for ag386bin
|
||||
|
||||
Revision 1.5 1999/01/13 12:01:43 peter
|
||||
|
||||
Loading…
Reference in New Issue
Block a user