Index: src/compiler/js-typed-lowering.cc |
diff --git a/src/compiler/js-typed-lowering.cc b/src/compiler/js-typed-lowering.cc |
index 74849af8a8734bffa39eca783b3c39f2ef2a5209..bc3ea82bcd8b82801e70ae68f0e895e2948dc0bd 100644 |
--- a/src/compiler/js-typed-lowering.cc |
+++ b/src/compiler/js-typed-lowering.cc |
@@ -4,6 +4,7 @@ |
#include "src/compiler/access-builder.h" |
#include "src/compiler/graph-inl.h" |
+#include "src/compiler/js-builtin-reducer.h" |
#include "src/compiler/js-typed-lowering.h" |
#include "src/compiler/node-aux-data-inl.h" |
#include "src/compiler/node-properties-inl.h" |
@@ -678,6 +679,8 @@ Reduction JSTypedLowering::Reduce(Node* node) { |
return ReduceJSLoadProperty(node); |
case IrOpcode::kJSStoreProperty: |
return ReduceJSStoreProperty(node); |
+ case IrOpcode::kJSCallFunction: |
+ return JSBuiltinReducer(jsgraph()).Reduce(node); |
default: |
break; |
} |