| Index: src/x64/full-codegen-x64.cc
|
| ===================================================================
|
| --- src/x64/full-codegen-x64.cc (revision 7619)
|
| +++ src/x64/full-codegen-x64.cc (working copy)
|
| @@ -4232,30 +4232,7 @@
|
| default:
|
| break;
|
| }
|
| -
|
| __ call(ic, mode);
|
| -
|
| - // Crankshaft doesn't need patching of inlined loads and stores.
|
| - // When compiling the snapshot we need to produce code that works
|
| - // with and without Crankshaft.
|
| - if (V8::UseCrankshaft() && !Serializer::enabled()) {
|
| - return;
|
| - }
|
| -
|
| - // If we're calling a (keyed) load or store stub, we have to mark
|
| - // the call as containing no inlined code so we will not attempt to
|
| - // patch it.
|
| - switch (ic->kind()) {
|
| - case Code::LOAD_IC:
|
| - case Code::KEYED_LOAD_IC:
|
| - case Code::STORE_IC:
|
| - case Code::KEYED_STORE_IC:
|
| - __ nop(); // Signals no inlined code.
|
| - break;
|
| - default:
|
| - // Do nothing.
|
| - break;
|
| - }
|
| }
|
|
|
|
|
| @@ -4276,7 +4253,6 @@
|
| default:
|
| break;
|
| }
|
| -
|
| __ call(ic, RelocInfo::CODE_TARGET);
|
| if (patch_site != NULL && patch_site->is_bound()) {
|
| patch_site->EmitPatchInfo();
|
|
|