Index: src/compiler/operator-properties.h |
diff --git a/src/compiler/operator-properties.h b/src/compiler/operator-properties.h |
index 37c9755ed7aceb68536a1823ce22356b51ee1788..15ce2e105f2873390bbdafe44a255aebbe33a1f6 100644 |
--- a/src/compiler/operator-properties.h |
+++ b/src/compiler/operator-properties.h |
@@ -18,14 +18,11 @@ class Operator; |
class OperatorProperties FINAL { |
public: |
static bool HasContextInput(const Operator* op); |
- static bool HasFrameStateInput(const Operator* op); |
- |
static int GetContextInputCount(const Operator* op) { |
return HasContextInput(op) ? 1 : 0; |
} |
- static int GetFrameStateInputCount(const Operator* op) { |
- return HasFrameStateInput(op) ? 1 : 0; |
- } |
+ static int GetFrameStateInputCount(const Operator* op); |
+ |
static int GetTotalInputCount(const Operator* op); |
static bool IsBasicBlockBegin(const Operator* op); |