From 4695ef1a096339a2af85e8d5a4b36fba71049d2d Mon Sep 17 00:00:00 2001 From: "sandholm@chromium.org" Date: Thu, 24 Jun 2010 11:21:58 +0000 Subject: [PATCH] Change kMinComplexMemCopy to 64 for IA32. It's just better. Review URL: http://codereview.chromium.org/2818028 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4937 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.h b/src/utils.h index d7c5b70..236b85e 100644 --- a/src/utils.h +++ b/src/utils.h @@ -587,7 +587,7 @@ static inline void MemCopy(void* dest, const void* src, size_t size) { // Limit below which the extra overhead of the MemCopy function is likely // to outweigh the benefits of faster copying. // TODO(lrn): Try to find a more precise value. -static const int kMinComplexMemCopy = 256; +static const int kMinComplexMemCopy = 64; #else // V8_TARGET_ARCH_IA32 -- 2.7.4