mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 21:11:23 +02:00
* give IE instead of crash when no procsym is passed for calln
This commit is contained in:
parent
34282c6cf9
commit
6a0aa09b20
@ -1248,6 +1248,9 @@ implementation
|
||||
pt : tcallparanode;
|
||||
|
||||
begin
|
||||
if not assigned(sym) then
|
||||
internalerror(200411015);
|
||||
|
||||
FProcSym:=sym;
|
||||
FProcs:=nil;
|
||||
FProccnt:=0;
|
||||
@ -1928,7 +1931,10 @@ implementation
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.101 2004-10-24 11:44:28 peter
|
||||
Revision 1.102 2004-11-01 16:58:57 peter
|
||||
* give IE instead of crash when no procsym is passed for calln
|
||||
|
||||
Revision 1.101 2004/10/24 11:44:28 peter
|
||||
* small regvar fixes
|
||||
* loadref parameter removed from concatcopy,incrrefcount,etc
|
||||
|
||||
|
@ -185,7 +185,7 @@ implementation
|
||||
systems,
|
||||
verbose,globals,
|
||||
symconst,defutil,defcmp,
|
||||
htypechk,pass_1,tgobj,
|
||||
htypechk,pass_1,
|
||||
ncnv,nld,ninl,nadd,ncon,nmem,
|
||||
procinfo,
|
||||
cgbase
|
||||
@ -1412,6 +1412,9 @@ type
|
||||
result:=nil;
|
||||
candidates:=nil;
|
||||
|
||||
if not assigned(symtableprocentry) then
|
||||
internalerror(200411014);
|
||||
|
||||
oldcallnode:=aktcallnode;
|
||||
aktcallnode:=self;
|
||||
|
||||
@ -2416,7 +2419,10 @@ begin
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.254 2004-10-31 21:45:03 peter
|
||||
Revision 1.255 2004-11-01 16:58:57 peter
|
||||
* give IE instead of crash when no procsym is passed for calln
|
||||
|
||||
Revision 1.254 2004/10/31 21:45:03 peter
|
||||
* generic tlocation
|
||||
* move tlocation to cgutils
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user