Reviewers: Jakob,

Description:
Remove unused member variables in IfBuilder

[email protected]

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

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

Affected files:
  M src/hydrogen.h
  M src/hydrogen.cc


Index: src/hydrogen.cc
diff --git a/src/hydrogen.cc b/src/hydrogen.cc
index e5270575e99303bfe4cf64e0b529c2c15022218a..435722d81dbaf819cd8ec4c249a7766b79601525 100644
--- a/src/hydrogen.cc
+++ b/src/hydrogen.cc
@@ -714,8 +714,6 @@ HGraphBuilder::IfBuilder::IfBuilder(HGraphBuilder* builder, int position)
       finished_(false),
       did_then_(false),
       did_else_(false),
-      deopt_then_(false),
-      deopt_else_(false),
       did_and_(false),
       did_or_(false),
       captured_(false),
@@ -736,8 +734,6 @@ HGraphBuilder::IfBuilder::IfBuilder(
       finished_(false),
       did_then_(false),
       did_else_(false),
-      deopt_then_(false),
-      deopt_else_(false),
       did_and_(false),
       did_or_(false),
       captured_(false),
Index: src/hydrogen.h
diff --git a/src/hydrogen.h b/src/hydrogen.h
index 809942b065560773789a131804cb10452090bd61..71a9cd2a45fa331cdc3cd4e99be947708a383d6c 100644
--- a/src/hydrogen.h
+++ b/src/hydrogen.h
@@ -1142,8 +1142,6 @@ class HGraphBuilder {
     bool finished_ : 1;
     bool did_then_ : 1;
     bool did_else_ : 1;
-    bool deopt_then_ : 1;
-    bool deopt_else_ : 1;
     bool did_and_ : 1;
     bool did_or_ : 1;
     bool captured_ : 1;


--
--
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