| Index: src/ia32/stub-cache-ia32.cc
|
| diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc
|
| index a71c33243df80c0a931c034c5e489fb218ca2aad..e2af9d45aa2affdc4dd5f21181b91a048f55d909 100644
|
| --- a/src/ia32/stub-cache-ia32.cc
|
| +++ b/src/ia32/stub-cache-ia32.cc
|
| @@ -2480,12 +2480,12 @@ Object* LoadStubCompiler::CompileLoadGlobal(JSObject* object,
|
| __ Check(not_equal, "DontDelete cells can't contain the hole");
|
| }
|
|
|
| - __ IncrementCounter(&Counters::named_load_global_inline, 1);
|
| + __ IncrementCounter(&Counters::named_load_global_stub, 1);
|
| __ mov(eax, ebx);
|
| __ ret(0);
|
|
|
| __ bind(&miss);
|
| - __ IncrementCounter(&Counters::named_load_global_inline_miss, 1);
|
| + __ IncrementCounter(&Counters::named_load_global_stub_miss, 1);
|
| GenerateLoadMiss(masm(), Code::LOAD_IC);
|
|
|
| // Return the generated code.
|
|
|