Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: src/compiler/operator.h

Issue 565753004: [turbofan] Some common operators are globally shared singletons. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixes2 Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/compiler/operator.h
diff --git a/src/compiler/operator.h b/src/compiler/operator.h
index 8d17bc4d4d903e60925d6bfde6e7db5c57aadb07..5137806f1298b8dc58e1f400ef577620c83f0dc5 100644
--- a/src/compiler/operator.h
+++ b/src/compiler/operator.h
@@ -11,11 +11,6 @@
namespace v8 {
namespace internal {
-
-// Forward declarations.
-class ExternalReference;
-
-
namespace compiler {
// An operator represents description of the "computation" of a node in the
@@ -147,13 +142,6 @@ struct StaticParameterTraits {
}
};
-template <>
-struct StaticParameterTraits<ExternalReference> {
- static OStream& PrintTo(OStream& os, ExternalReference reference); // NOLINT
- static int HashCode(ExternalReference reference);
- static bool Equals(ExternalReference lhs, ExternalReference rhs);
-};
-
// Specialization for static parameters of type {int}.
template <>
struct StaticParameterTraits<int> {

Powered by Google App Engine
This is Rietveld 408576698