Reviewers: mvstanton,

Message:
PTAL

Description:
Fix missing initialization of last_true_block_ in IfBuilder.

Please review this at https://codereview.chromium.org/23976005/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+1, -0 lines):
  M src/hydrogen.cc


Index: src/hydrogen.cc
diff --git a/src/hydrogen.cc b/src/hydrogen.cc
index 4e00ba6907fd60f59e25f0570c812b6727ad30ec..ed757eb3f7cee02b94a81dde8992e49f179232e3 100644
--- a/src/hydrogen.cc
+++ b/src/hydrogen.cc
@@ -727,6 +727,7 @@ HGraphBuilder::IfBuilder::IfBuilder(
       captured_(false),
       needs_compare_(false),
       first_true_block_(NULL),
+      last_true_block_(NULL),
       first_false_block_(NULL),
       split_edge_merge_block_(NULL),
       merge_block_(NULL) {


--
--
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/groups/opt_out.

Reply via email to