Index: src/arm/codegen-arm.cc |
diff --git a/src/arm/codegen-arm.cc b/src/arm/codegen-arm.cc |
index 67abb3f608f2753158789d7d9e77c9660bf532c1..8a46006eb9b773d253c34710a690bee952489d15 100644 |
--- a/src/arm/codegen-arm.cc |
+++ b/src/arm/codegen-arm.cc |
@@ -78,7 +78,8 @@ UnaryMathFunction CreateExpFunction() { |
} |
#if defined(V8_HOST_ARCH_ARM) |
-MemCopyUint8Function CreateMemCopyUint8Function(MemCopyUint8Function stub) { |
+OS::MemCopyUint8Function CreateMemCopyUint8Function( |
+ OS::MemCopyUint8Function stub) { |
#if defined(USE_SIMULATOR) |
return stub; |
#else |
@@ -227,14 +228,14 @@ MemCopyUint8Function CreateMemCopyUint8Function(MemCopyUint8Function stub) { |
CPU::FlushICache(buffer, actual_size); |
OS::ProtectCode(buffer, actual_size); |
- return FUNCTION_CAST<MemCopyUint8Function>(buffer); |
+ return FUNCTION_CAST<OS::MemCopyUint8Function>(buffer); |
#endif |
} |
// Convert 8 to 16. The number of character to copy must be at least 8. |
-MemCopyUint16Uint8Function CreateMemCopyUint16Uint8Function( |
- MemCopyUint16Uint8Function stub) { |
+OS::MemCopyUint16Uint8Function CreateMemCopyUint16Uint8Function( |
+ OS::MemCopyUint16Uint8Function stub) { |
#if defined(USE_SIMULATOR) |
return stub; |
#else |
@@ -314,7 +315,7 @@ MemCopyUint16Uint8Function CreateMemCopyUint16Uint8Function( |
CPU::FlushICache(buffer, actual_size); |
OS::ProtectCode(buffer, actual_size); |
- return FUNCTION_CAST<MemCopyUint16Uint8Function>(buffer); |
+ return FUNCTION_CAST<OS::MemCopyUint16Uint8Function>(buffer); |
#endif |
} |
#endif |