浏览代码

* prevent invalid typecast on targets using nestedfpstruct functionality
in case of type errors in the source (the compiler will already have
printed an error at this point)

git-svn-id: trunk@23044 -

Jonas Maebe 12 年之前
父节点
当前提交
dfe3ca5328
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      compiler/pparautl.pas

+ 3 - 1
compiler/pparautl.pas

@@ -114,7 +114,9 @@ implementation
               paranr:=paranr_parentfp_delphi_cc;
             { Generate frame pointer. It can't be put in a register since it
               must be accessable from nested routines }
-            if not(target_info.system in systems_fpnestedstruct) then
+            if not(target_info.system in systems_fpnestedstruct) or
+               { in case of errors, prevent invalid type cast }
+               (pd.owner.defowner.typ<>procdef) then
               begin
                 vs:=tparavarsym.create('$parentfp',paranr,vs_value
                       ,voidpointertype,[vo_is_parentfp,vo_is_hidden_para]);