소스 검색

* fix wrong suffix

git-svn-id: trunk@27211 -
florian 11 년 전
부모
커밋
1f6c43810d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      rtl/x86_64/cpu.pp

+ 2 - 2
rtl/x86_64/cpu.pp

@@ -155,12 +155,12 @@ unit cpu;
         _FMASupport:=_AVXSupport and ((_ecx and $1000)<>0);
 
         asm
-           pushl %rbx
+           pushq %rbx
            movl $7,%eax
            movl $0,%ecx
            cpuid
            movl %ebx,_ebx
-           popl %rbx
+           popq %rbx
         end;
         _AVX2Support:=_AVXSupport and ((_ebx and $20)<>0);
       end;