Fix use of live register as temporary
When flag --naive-counters was used this code trashed r1 which is actually live. Review URL: http://codereview.chromium.org/1725009 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4508 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
daf1ea3970
commit
3470a0c9c0
@ -1227,7 +1227,7 @@ Object* CallStubCompiler::CompileCallGlobal(JSObject* object,
|
||||
__ ldr(cp, FieldMemOperand(r1, JSFunction::kContextOffset));
|
||||
|
||||
// Jump to the cached code (tail call).
|
||||
__ IncrementCounter(&Counters::call_global_inline, 1, r1, r3);
|
||||
__ IncrementCounter(&Counters::call_global_inline, 1, r3, r4);
|
||||
ASSERT(function->is_compiled());
|
||||
Handle<Code> code(function->code());
|
||||
ParameterCount expected(function->shared()->formal_parameter_count());
|
||||
|
Loading…
Reference in New Issue
Block a user