Chromium Code Reviews| Index: src/ia32/lithium-codegen-ia32.cc |
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
| index 0a6723170ca049f9e6176b301d9da7f984c2bac4..02bd33b5d2ade2d36bfc0a4bbc2f1058c62f875f 100644 |
| --- a/src/ia32/lithium-codegen-ia32.cc |
| +++ b/src/ia32/lithium-codegen-ia32.cc |
| @@ -3203,8 +3203,7 @@ void LCodeGen::DoStoreGlobalGeneric(LStoreGlobalGeneric* instr) { |
| __ mov(ecx, instr->name()); |
| Handle<Code> ic = StoreIC::initialize_stub(isolate(), |
| - instr->strict_mode_flag(), |
| - CONTEXTUAL); |
|
Toon Verwaest
2014/01/17 10:05:56
So now you should be able to remove StoreGlobalGen
mvstanton
2014/01/17 10:44:34
Yowza! Let's do-it-to-it.
|
| + instr->strict_mode_flag()); |
| CallCode(ic, RelocInfo::CODE_TARGET, instr); |
| } |
| @@ -4485,8 +4484,7 @@ void LCodeGen::DoStoreNamedGeneric(LStoreNamedGeneric* instr) { |
| __ mov(ecx, instr->name()); |
| Handle<Code> ic = StoreIC::initialize_stub(isolate(), |
| - instr->strict_mode_flag(), |
| - NOT_CONTEXTUAL); |
| + instr->strict_mode_flag()); |
| CallCode(ic, RelocInfo::CODE_TARGET, instr); |
| } |