Index: src/compiler/js-native-context-specialization.cc |
diff --git a/src/compiler/js-native-context-specialization.cc b/src/compiler/js-native-context-specialization.cc |
index a264ad462d0cce73eb801e7779c59fec3f76b2f6..b2dabbcff607cad3fc20d0f55840a8016eacdda2 100644 |
--- a/src/compiler/js-native-context-specialization.cc |
+++ b/src/compiler/js-native-context-specialization.cc |
@@ -83,6 +83,8 @@ Reduction JSNativeContextSpecialization::Reduce(Node* node) { |
return ReduceJSLoadProperty(node); |
case IrOpcode::kJSStoreProperty: |
return ReduceJSStoreProperty(node); |
+ case IrOpcode::kJSStoreDataPropertyInLiteral: |
+ return ReduceJSStoreDataPropertyInLiteral(node); |
default: |
break; |
} |
@@ -1252,6 +1254,12 @@ JSNativeContextSpecialization::BuildPropertyAccess( |
return ValueEffectControl(value, effect, control); |
} |
+Reduction JSNativeContextSpecialization::ReduceJSStoreDataPropertyInLiteral( |
+ Node* node) { |
+ // TODO(franzih): Use feedback |
+ return NoChange(); |
+} |
+ |
namespace { |
ExternalArrayType GetArrayTypeFromElementsKind(ElementsKind kind) { |