Index: src/ia32/ic-ia32.cc |
diff --git a/src/ia32/ic-ia32.cc b/src/ia32/ic-ia32.cc |
index c234b364ce1a49fe6787f70ecc26a78be369f2c0..c1369774d8f450192a4f076154ed3716617a612a 100644 |
--- a/src/ia32/ic-ia32.cc |
+++ b/src/ia32/ic-ia32.cc |
@@ -388,7 +388,8 @@ void LoadIC::GenerateArrayLength(MacroAssembler* masm) { |
} |
-void LoadIC::GenerateStringLength(MacroAssembler* masm) { |
+void LoadIC::GenerateStringLength(MacroAssembler* masm, |
+ bool support_wrappers) { |
// ----------- S t a t e ------------- |
// -- eax : receiver |
// -- ecx : name |
@@ -396,7 +397,8 @@ void LoadIC::GenerateStringLength(MacroAssembler* masm) { |
// ----------------------------------- |
Label miss; |
- StubCompiler::GenerateLoadStringLength(masm, eax, edx, ebx, &miss); |
+ StubCompiler::GenerateLoadStringLength(masm, eax, edx, ebx, &miss, |
+ support_wrappers); |
__ bind(&miss); |
StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC); |
} |