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

Unified Diff: src/compiler/operator.h

Issue 735583003: Remove ambiguous getter for operator value counts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « src/compiler/js-inlining.cc ('k') | test/cctest/compiler/simplified-graph-builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/operator.h
diff --git a/src/compiler/operator.h b/src/compiler/operator.h
index 74b714b3d65e5d5aec001f860059497948ecf401..810851b626a02e0a9a3e5510d716bfff3a5f11cc 100644
--- a/src/compiler/operator.h
+++ b/src/compiler/operator.h
@@ -82,14 +82,6 @@ class Operator : public ZoneObject {
return (properties() & property) == property;
}
- // Number of data inputs to the operator, for verifying graph structure.
- // TODO(titzer): convert callers to ValueInputCount();
- int InputCount() const { return ValueInputCount(); }
-
- // Number of data outputs from the operator, for verifying graph structure.
- // TODO(titzer): convert callers to ValueOutputCount();
- int OutputCount() const { return ValueOutputCount(); }
-
Properties properties() const { return properties_; }
// TODO(titzer): convert return values here to size_t.
« no previous file with comments | « src/compiler/js-inlining.cc ('k') | test/cctest/compiler/simplified-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698