소스 검색

* Fixed warnings about uninitialized record fields.

git-svn-id: trunk@11447 -
yury 17 년 전
부모
커밋
72aa4f8cdd
5개의 변경된 파일14개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 0
      compiler/systems/i_emx.pas
  2. 1 0
      compiler/systems/i_go32v2.pas
  3. 10 2
      compiler/systems/i_palmos.pas
  4. 1 0
      compiler/systems/i_watcom.pas
  5. 1 0
      compiler/systems/i_wdosx.pas

+ 1 - 0
compiler/systems/i_emx.pas

@@ -94,6 +94,7 @@ unit i_emx;
               );
               );
             first_parm_offset : 8;
             first_parm_offset : 8;
             stacksize    : 256*1024;
             stacksize    : 256*1024;
+            abi          : abi_default;
           );
           );
 
 
 
 

+ 1 - 0
compiler/systems/i_go32v2.pas

@@ -83,6 +83,7 @@ unit i_go32v2;
               );
               );
             first_parm_offset : 8;
             first_parm_offset : 8;
             stacksize    : 262144;
             stacksize    : 262144;
+            abi          : abi_default;
           );
           );
 
 
   implementation
   implementation

+ 10 - 2
compiler/systems/i_palmos.pas

@@ -90,7 +90,11 @@ unit i_palmos;
           (
           (
             id     : res_m68k_palmos;
             id     : res_m68k_palmos;
             resbin : 'pilrc';
             resbin : 'pilrc';
-            rescmd : '-I $INC $RES'
+            rescmd : '-I $INC $RES';
+            rcbin  : '';
+            rccmd  : '';
+            resourcefileclass : nil;
+            resflags : [];
           );
           );
 
 
        system_arm_palmos_info : tsysteminfo =
        system_arm_palmos_info : tsysteminfo =
@@ -156,7 +160,11 @@ unit i_palmos;
           (
           (
             id     : res_m68k_palmos;
             id     : res_m68k_palmos;
             resbin : 'pilrc';
             resbin : 'pilrc';
-            rescmd : '-I $INC $RES'
+            rescmd : '-I $INC $RES';
+            rcbin  : '';
+            rccmd  : '';
+            resourcefileclass : nil;
+            resflags : [];
           );
           );
 
 
 implementation
 implementation

+ 1 - 0
compiler/systems/i_watcom.pas

@@ -85,6 +85,7 @@ unit i_watcom;
               );
               );
             first_parm_offset : 8;
             first_parm_offset : 8;
             stacksize    : 16384;
             stacksize    : 16384;
+            abi          : abi_default;
           );
           );
 
 
   implementation
   implementation

+ 1 - 0
compiler/systems/i_wdosx.pas

@@ -83,6 +83,7 @@ unit i_wdosx;
               );
               );
             first_parm_offset : 8;
             first_parm_offset : 8;
             stacksize    : 32*1024*1024;
             stacksize    : 32*1024*1024;
+            abi          : abi_default;
           );
           );
 
 
   implementation
   implementation