Reviewers: Hannes Payer,

Description:
Removed a few dead template functions.

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

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

Affected files (+0, -21 lines):
  M src/hydrogen.h


Index: src/hydrogen.h
diff --git a/src/hydrogen.h b/src/hydrogen.h
index bd802794c190b5e61cf66bbaad78ce505a544684..6b031708c767cbcdbd596e58c9959a513a8b40ac 100644
--- a/src/hydrogen.h
+++ b/src/hydrogen.h
@@ -1728,27 +1728,6 @@ class HGraphBuilder {
     bool finished_;
   };

-  template <class A, class P1>
-  void DeoptimizeIf(P1 p1, char* const reason) {
-    IfBuilder builder(this);
-    builder.If<A>(p1);
-    builder.ThenDeopt(reason);
-  }
-
-  template <class A, class P1, class P2>
-  void DeoptimizeIf(P1 p1, P2 p2, const char* reason) {
-    IfBuilder builder(this);
-    builder.If<A>(p1, p2);
-    builder.ThenDeopt(reason);
-  }
-
-  template <class A, class P1, class P2, class P3>
-  void DeoptimizeIf(P1 p1, P2 p2, P3 p3, const char* reason) {
-    IfBuilder builder(this);
-    builder.If<A>(p1, p2, p3);
-    builder.ThenDeopt(reason);
-  }
-
   HValue* BuildNewElementsCapacity(HValue* old_capacity);

   class JSArrayBuilder FINAL {


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

Reply via email to