Commit 4695ef1a authored by sandholm@chromium.org's avatar sandholm@chromium.org

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
parent a4a757d7
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment