Revision: 24064
Author: [email protected]
Date: Fri Sep 19 07:27:13 2014 UTC
Log: Removed a few dead template functions.
[email protected]
Review URL: https://codereview.chromium.org/583833006
https://code.google.com/p/v8/source/detail?r=24064
Modified:
/branches/bleeding_edge/src/hydrogen.h
=======================================
--- /branches/bleeding_edge/src/hydrogen.h Thu Sep 18 12:00:00 2014 UTC
+++ /branches/bleeding_edge/src/hydrogen.h Fri Sep 19 07:27:13 2014 UTC
@@ -1727,27 +1727,6 @@
Direction direction_;
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);
--
--
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.