* give IE instead of crash when no procsym is passed for calln

This commit is contained in:
peter 2004-11-01 16:58:57 +00:00
parent 34282c6cf9
commit 6a0aa09b20
2 changed files with 15 additions and 3 deletions

View File

@ -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

View File

@ -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