Temporarily disable target recording CallFunctionStub until issue 1789 is fixed.

Review URL: http://codereview.chromium.org/8340029

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9823 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
fschneider@chromium.org 2011-10-27 15:46:25 +00:00
parent 8624fb85d2
commit 8b1494b819

View File

@ -2185,7 +2185,9 @@ void FullCodeGenerator::EmitCallWithStub(Call* expr, CallFunctionFlags flags) {
SetSourcePosition(expr->position());
// Record call targets in unoptimized code, but not in the snapshot.
bool record_call_target = !Serializer::enabled();
// TODO(1789): Reenable temporarily disabled recording CallFunctionStub
// when the issue is fixed.
bool record_call_target = false && !Serializer::enabled();
if (record_call_target) {
flags = static_cast<CallFunctionFlags>(flags | RECORD_CALL_TARGET);
}