浏览代码

* fixed range check error when compiling with -dTest_Double_checksum
(although it crashes later for other reasons)

git-svn-id: branches/jvmbackend@18601 -

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

+ 1 - 1
compiler/ppu.pas

@@ -38,7 +38,7 @@ var
 const
 const
   CRC_array_Size = 200000;
   CRC_array_Size = 200000;
 type
 type
-  tcrc_array = array[0..crc_array_size] of longint;
+  tcrc_array = array[0..crc_array_size] of dword;
   pcrc_array = ^tcrc_array;
   pcrc_array = ^tcrc_array;
 {$endif Test_Double_checksum}
 {$endif Test_Double_checksum}