| Index: src/arm/code-stubs-arm.cc
|
| diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc
|
| old mode 100644
|
| new mode 100755
|
| index e6292cd7da18ce3e97a8dc413754b3b64e18c88d..452425f934801e966a8ab9e0f9e5b5148143cbb3
|
| --- a/src/arm/code-stubs-arm.cc
|
| +++ b/src/arm/code-stubs-arm.cc
|
| @@ -7123,8 +7123,9 @@ void ProfileEntryHookStub::Generate(MacroAssembler* masm) {
|
| }
|
|
|
| #if defined(V8_HOST_ARCH_ARM)
|
| - __ mov(ip, FUNCTION_ADDR(masm->isolate()->function_entry_hook()),
|
| - RelocInfo::NONE));
|
| + int32_t entry_hook =
|
| + reinterpret_cast<int32_t>(masm->isolate()->function_entry_hook());
|
| + __ mov(ip, Operand(entry_hook));
|
| #else
|
| // Under the simulator we need to indirect the entry hook through a
|
| // trampoline function at a known address.
|
|
|