Index: src/compiler/js-intrinsic-lowering.h |
diff --git a/src/compiler/js-intrinsic-lowering.h b/src/compiler/js-intrinsic-lowering.h |
index d4d1e477e3b2643bf5ef679e16f7eb0368dff6dd..35fb66147b1262a9883ce8eb162673d02c5d6a62 100644 |
--- a/src/compiler/js-intrinsic-lowering.h |
+++ b/src/compiler/js-intrinsic-lowering.h |
@@ -32,6 +32,7 @@ class JSIntrinsicLowering FINAL : public Reducer { |
Reduction ReduceDoubleHi(Node* node); |
Reduction ReduceDoubleLo(Node* node); |
Reduction ReduceHeapObjectGetMap(Node* node); |
+ Reduction ReduceIncrementStatsCounter(Node* node); |
Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); |
Reduction ReduceIsNonNegativeSmi(Node* node); |
Reduction ReduceIsSmi(Node* node); |
@@ -47,6 +48,7 @@ class JSIntrinsicLowering FINAL : public Reducer { |
Reduction Change(Node* node, const Operator* op); |
Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); |
+ Reduction ChangeToUndefined(Node* node, Node* effect = nullptr); |
Graph* graph() const; |
JSGraph* jsgraph() const { return jsgraph_; } |