From 70886d0152fae10dd4da86785685fb187c0a0d5e Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Sun, 29 Jul 2007 19:09:12 +0000 Subject: [PATCH] * now also disable use8byteconcatcopy by default git-svn-id: trunk@8197 - --- compiler/powerpc/cgcpu.pas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/powerpc/cgcpu.pas b/compiler/powerpc/cgcpu.pas index dce35a964f..4d30b7c078 100644 --- a/compiler/powerpc/cgcpu.pas +++ b/compiler/powerpc/cgcpu.pas @@ -1493,7 +1493,7 @@ const { ************* concatcopy ************ } -{$ifndef use8byteconcatcopy} +{$ifdef use8byteconcatcopy} const maxmoveunit = 8; {$else use8byteconcatcopy} @@ -1569,7 +1569,7 @@ const dst := dest; end; -{$ifndef use8byteconcatcopy} +{$ifdef use8byteconcatcopy} if count > 4 then { generate a loop } begin @@ -1619,7 +1619,7 @@ const inc(dst.offset,4); a_reg_dealloc(list,NR_R0); end; -{$else not use8byteconcatcopy} +{$else use8byteconcatcopy} if count > 4 then { generate a loop } begin @@ -1661,7 +1661,7 @@ const a_reg_dealloc(list,NR_R0); len := len mod 4; end; -{$endif not use8byteconcatcopy} +{$endif use8byteconcatcopy} { copy the leftovers } if (len and 2) <> 0 then begin