소스 검색

* x86_64: do not use copy_mm in g_concatcopy for 8 byte sized copies

florian 3 년 전
부모
커밋
ee3b5f5a62
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compiler/x86/cgx86.pas

+ 1 - 1
compiler/x86/cgx86.pas

@@ -2831,7 +2831,7 @@ unit cgx86;
 {$endif i8086}
       if (cs_mmx in current_settings.localswitches) and
          not(pi_uses_fpu in current_procinfo.flags) and
-         ((len=8) or (len=16) or (len=24) or (len=32)) then
+         ({$ifdef i386}(len=8) or {$endif i386}(len=16) or (len=24) or (len=32)) then
         cm:=copy_mmx
       else
         if len>helpsize then