| Index: src/ia32/full-codegen-ia32.cc
|
| ===================================================================
|
| --- src/ia32/full-codegen-ia32.cc (revision 7619)
|
| +++ src/ia32/full-codegen-ia32.cc (working copy)
|
| @@ -4254,30 +4254,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;
|
| - }
|
| }
|
|
|
|
|
| @@ -4298,7 +4275,6 @@
|
| default:
|
| break;
|
| }
|
| -
|
| __ call(ic, RelocInfo::CODE_TARGET);
|
| if (patch_site != NULL && patch_site->is_bound()) {
|
| patch_site->EmitPatchInfo();
|
|
|