Index: src/x64/stub-cache-x64.cc |
diff --git a/src/x64/stub-cache-x64.cc b/src/x64/stub-cache-x64.cc |
index ab61390f0f9658244d6133380ef54a3d65e9db13..df745cc7fe75fbb9d10d8e83856d2efb55a0cc2b 100644 |
--- a/src/x64/stub-cache-x64.cc |
+++ b/src/x64/stub-cache-x64.cc |
@@ -1852,12 +1852,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); |
__ movq(rax, rbx); |
__ 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. |