| Index: src/arm/codegen-arm.cc
|
| diff --git a/src/arm/codegen-arm.cc b/src/arm/codegen-arm.cc
|
| index 9eb759019fd9efefa555e0d03d9d5678abff49b3..83437936a9e77583d828a6d27bd1dc87829f7562 100644
|
| --- a/src/arm/codegen-arm.cc
|
| +++ b/src/arm/codegen-arm.cc
|
| @@ -79,11 +79,12 @@ UnaryMathFunction CreateExpFunction() {
|
|
|
| #if defined(V8_HOST_ARCH_ARM)
|
| OS::MemCopyUint8Function CreateMemCopyUint8Function(
|
| - OS::MemCopyUint8Function stub) {
|
| + bool serializer_enabled,
|
| + OS::MemCopyUint8Function stub) {
|
| #if defined(USE_SIMULATOR)
|
| return stub;
|
| #else
|
| - if (Serializer::enabled() || !CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) {
|
| + if (serializer_enabled || !CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) {
|
| return stub;
|
| }
|
| size_t actual_size;
|
|
|