瀏覽代碼

internalerror if the section we're about to keep has no exesection assigned

Karoly Balogh 3 年之前
父節點
當前提交
e018264ad9
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      compiler/ogbase.pas

+ 2 - 0
compiler/ogbase.pas

@@ -3523,6 +3523,8 @@ implementation
           while ObjSectionWorkList.Count>0 do
             begin
               objsec:=TObjSection(ObjSectionWorkList.Last);
+              if not assigned(objsec.exesection) then
+                internalerror(202102001);
               if assigned(exemap) then
                 exemap.Add('Keeping '+objsec.FullName+' '+ToStr(objsec.ObjRelocations.Count)+' references');
               ObjSectionWorkList.Delete(ObjSectionWorkList.Count-1);