Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index a589199a4cd3cad8bb03d221a191207d11d418a7..6377d5de5418c48cab2669d5499ef6b714495baf 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -4007,7 +4007,7 @@ void FullCodeGenerator::EmitStringCharCodeAt(CallRuntime* expr) { |
__ jmp(&done); |
NopRuntimeCallHelper call_helper; |
- generator.GenerateSlow(masm_, call_helper); |
+ generator.GenerateSlow(masm_, NOT_PART_OF_IC_HANDLER, call_helper); |
__ bind(&done); |
context()->Plug(result); |
@@ -4055,7 +4055,7 @@ void FullCodeGenerator::EmitStringCharAt(CallRuntime* expr) { |
__ jmp(&done); |
NopRuntimeCallHelper call_helper; |
- generator.GenerateSlow(masm_, call_helper); |
+ generator.GenerateSlow(masm_, NOT_PART_OF_IC_HANDLER, call_helper); |
__ bind(&done); |
context()->Plug(result); |