| Index: src/objects.cc
|
| ===================================================================
|
| --- src/objects.cc (revision 4311)
|
| +++ src/objects.cc (working copy)
|
| @@ -5213,13 +5213,13 @@
|
| RelocInfo::Mode mode = it.rinfo()->rmode();
|
| if (mode == RelocInfo::EMBEDDED_OBJECT) {
|
| Handle<Object> p = it.rinfo()->target_object_handle(origin);
|
| - it.rinfo()->set_target_object(*p);
|
| + it.rinfo()->set_target_object(*p, false);
|
| } else if (RelocInfo::IsCodeTarget(mode)) {
|
| // rewrite code handles in inline cache targets to direct
|
| // pointers to the first instruction in the code object
|
| Handle<Object> p = it.rinfo()->target_object_handle(origin);
|
| Code* code = Code::cast(*p);
|
| - it.rinfo()->set_target_address(code->instruction_start());
|
| + it.rinfo()->set_target_address(code->instruction_start(), false);
|
| } else {
|
| it.rinfo()->apply(delta);
|
| }
|
|
|