瀏覽代碼

+ set cobjdata in TIntelHexExeOutput.create;

git-svn-id: trunk@45548 -
nickysn 5 年之前
父節點
當前提交
3685b50e75
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      compiler/ogrel.pas

+ 8 - 0
compiler/ogrel.pas

@@ -111,6 +111,8 @@ interface
       protected
         function writeData:boolean;override;
         procedure DoRelocationFixup(objsec:TObjSection);override;
+      public
+        constructor create;override;
       end;
 
 implementation
@@ -683,6 +685,12 @@ implementation
       begin
       end;
 
+    constructor TIntelHexExeOutput.create;
+      begin
+        inherited create;
+        CObjData:=TRelObjData;
+      end;
+
 {*****************************************************************************
                                   Initialize
 *****************************************************************************}