| Index: src/ic/x64/ic-x64.cc
|
| diff --git a/src/ic/x64/ic-x64.cc b/src/ic/x64/ic-x64.cc
|
| index 174275b0cda05709d00d27d04547bea265b83924..c183febbb8c454106d6df3edcbe93f1266a367b0 100644
|
| --- a/src/ic/x64/ic-x64.cc
|
| +++ b/src/ic/x64/ic-x64.cc
|
| @@ -512,7 +512,7 @@ static void KeyedStoreGenerateMegamorphicHelper(
|
|
|
|
|
| void KeyedStoreIC::GenerateMegamorphic(MacroAssembler* masm,
|
| - StrictMode strict_mode) {
|
| + LanguageMode language_mode) {
|
| // Return address is on the stack.
|
| Label slow, slow_with_tagged_index, fast_object, fast_object_grow;
|
| Label fast_double, fast_double_grow;
|
| @@ -552,7 +552,7 @@ void KeyedStoreIC::GenerateMegamorphic(MacroAssembler* masm,
|
| __ bind(&slow);
|
| __ Integer32ToSmi(key, key);
|
| __ bind(&slow_with_tagged_index);
|
| - PropertyICCompiler::GenerateRuntimeSetProperty(masm, strict_mode);
|
| + PropertyICCompiler::GenerateRuntimeSetProperty(masm, language_mode);
|
| // Never returns to here.
|
|
|
| __ bind(&maybe_name_key);
|
|
|