소스 검색

* changed the registers, used by the 'register' calling convention on i8086 to
ax,dx,bx instead of ax,dx,cx, because that makes it more compatible with
Borland C++ 3.1's _fastcall calling convention

git-svn-id: trunk@38783 -

nickysn 7 년 전
부모
커밋
91707deba7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compiler/i8086/cpupara.pas

+ 1 - 1
compiler/i8086/cpupara.pas

@@ -72,7 +72,7 @@ unit cpupara;
        defutil;
 
       const
-        parasupregs : array[0..2] of tsuperregister = (RS_AX,RS_DX,RS_CX);
+        parasupregs : array[0..2] of tsuperregister = (RS_AX,RS_DX,RS_BX);
 
 {****************************************************************************
                                 tcpuparamanager