R=dcarney@chromium.org
BUG=
Review URL: https://codereview.chromium.org/
1112823002
Cr-Commit-Position: refs/heads/master@{#28129}
int pop_count = descriptor->IsJSFunctionCall()
? static_cast<int>(descriptor->JSParameterCount())
: 0;
- __ ret(pop_count * kPointerSize);
+ __ Ret(pop_count * kPointerSize, ebx);
} else {
__ ret(0);
}
int pop_count = descriptor->IsJSFunctionCall()
? static_cast<int>(descriptor->JSParameterCount())
: 0;
- __ ret(pop_count * kPointerSize);
+ __ Ret(pop_count * kPointerSize, rbx);
} else {
__ ret(0);
}