Revision: 24041
Author: [email protected]
Date: Thu Sep 18 13:24:02 2014 UTC
Log: Fix gcmole warning.
[email protected]
Review URL: https://codereview.chromium.org/582033002
https://code.google.com/p/v8/source/detail?r=24041
Modified:
/branches/bleeding_edge/src/factory.cc
=======================================
--- /branches/bleeding_edge/src/factory.cc Thu Sep 18 12:31:31 2014 UTC
+++ /branches/bleeding_edge/src/factory.cc Thu Sep 18 13:24:02 2014 UTC
@@ -1974,7 +1974,8 @@
share->set_script(*undefined_value(), SKIP_WRITE_BARRIER);
share->set_debug_info(*undefined_value(), SKIP_WRITE_BARRIER);
share->set_inferred_name(*empty_string(), SKIP_WRITE_BARRIER);
- share->set_feedback_vector(*NewTypeFeedbackVector(0),
SKIP_WRITE_BARRIER);
+ Handle<TypeFeedbackVector> feedback_vector = NewTypeFeedbackVector(0);
+ share->set_feedback_vector(*feedback_vector, SKIP_WRITE_BARRIER);
share->set_profiler_ticks(0);
share->set_ast_node_count(0);
share->set_counters(0);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.