| Index: src/ic/x64/ic-x64.cc
|
| diff --git a/src/ic/x64/ic-x64.cc b/src/ic/x64/ic-x64.cc
|
| index 4e9927d12d8cd4799a932805b7fcb582c4f2f4f0..0309961d62853648c712852a272eda98dc4d3609 100644
|
| --- a/src/ic/x64/ic-x64.cc
|
| +++ b/src/ic/x64/ic-x64.cc
|
| @@ -829,8 +829,9 @@ void PatchInlinedSmiCode(Isolate* isolate, Address address,
|
| // condition code uses at the patched jump.
|
| uint8_t delta = *reinterpret_cast<uint8_t*>(delta_address);
|
| if (FLAG_trace_ic) {
|
| - PrintF("[ patching ic at %p, test=%p, delta=%d\n", address,
|
| - test_instruction_address, delta);
|
| + PrintF("[ patching ic at %p, test=%p, delta=%d\n",
|
| + static_cast<void*>(address),
|
| + static_cast<void*>(test_instruction_address), delta);
|
| }
|
|
|
| // Patch with a short conditional jump. Enabling means switching from a short
|
|
|