Chromium Code Reviews| Index: src/platform-posix.cc |
| diff --git a/src/platform-posix.cc b/src/platform-posix.cc |
| index bc315b2e7e15ade647f0a92b121669eb69aaeb8f..be1ace1d628000512082718bcc3c368efc76c3c9 100644 |
| --- a/src/platform-posix.cc |
| +++ b/src/platform-posix.cc |
| @@ -442,7 +442,7 @@ int OS::VSNPrintF(Vector<char> str, |
| } |
| -#if V8_TARGET_ARCH_IA32 |
| +#if V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X87 |
|
Sven Panne
2014/05/20 06:21:20
Not related to this CL: We should re-evaluate if a
|
| static void MemMoveWrapper(void* dest, const void* src, size_t size) { |
| memmove(dest, src, size); |
| } |
| @@ -491,7 +491,7 @@ OS::MemCopyUint8Function CreateMemCopyUint8Function( |
| void OS::PostSetUp() { |
| -#if V8_TARGET_ARCH_IA32 |
| +#if V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X87 |
| OS::MemMoveFunction generated_memmove = CreateMemMoveFunction(); |
| if (generated_memmove != NULL) { |
| memmove_function = generated_memmove; |