Index: src/compiler/js-call-reducer.h |
diff --git a/src/compiler/js-call-reducer.h b/src/compiler/js-call-reducer.h |
index f42c5fec0d401f782f8f478ec790b65a92a923a6..d9123299b1b73ee05b03b17738ffb6b7d10f7cf8 100644 |
--- a/src/compiler/js-call-reducer.h |
+++ b/src/compiler/js-call-reducer.h |
@@ -23,7 +23,7 @@ class JSGraph; |
class JSOperatorBuilder; |
class SimplifiedOperatorBuilder; |
-// Performs strength reduction on {JSConstruct} and {JSCallFunction} nodes, |
+// Performs strength reduction on {JSConstruct} and {JSCall} nodes, |
// which might allow inlining or other optimizations to be performed afterwards. |
class JSCallReducer final : public AdvancedReducer { |
public: |
@@ -57,7 +57,7 @@ class JSCallReducer final : public AdvancedReducer { |
Reduction ReduceObjectPrototypeGetProto(Node* node); |
Reduction ReduceJSConstruct(Node* node); |
Reduction ReduceJSConstructWithSpread(Node* node); |
- Reduction ReduceJSCallFunction(Node* node); |
+ Reduction ReduceJSCall(Node* node); |
enum HolderLookup { kHolderNotFound, kHolderIsReceiver, kHolderFound }; |