소스 검색

* Fixed r46801 for the case of int64 params with a single paralocation.

git-svn-id: trunk@46802 -
yury 5 년 전
부모
커밋
d34168742e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compiler/ncgutil.pas

+ 1 - 1
compiler/ncgutil.pas

@@ -633,7 +633,7 @@ implementation
                 
                 Spilling of sub registers is supported for x86.
               }
-              if regsize>tcgsize2size[paraloc^.Size] then
+              if (paraloc<>nil) and (regsize>tcgsize2size[paraloc^.Size]) then
                 break;
 {$endif x86}
               cg.rg[regtype].set_reg_initial_location(reg,loc.reference);