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 a8d848ead5ab85d849d666de619415e365d11f86..9fc4e046a0addba38f0a421f7dbfa6d14ac902ca 100644 |
--- a/src/compiler/js-native-context-specialization.cc |
+++ b/src/compiler/js-native-context-specialization.cc |
@@ -849,7 +849,8 @@ JSNativeContextSpecialization::BuildPropertyAccess( |
// Introduce the call to the getter function. |
value = effect = graph()->NewNode( |
javascript()->CallFunction( |
- 2, VectorSlotPair(), ConvertReceiverMode::kNotNullOrUndefined), |
+ 2, 0.0f, VectorSlotPair(), |
+ ConvertReceiverMode::kNotNullOrUndefined), |
target, receiver, context, frame_state0, effect, control); |
control = graph()->NewNode(common()->IfSuccess(), value); |
break; |
@@ -869,10 +870,11 @@ JSNativeContextSpecialization::BuildPropertyAccess( |
context, target, frame_state); |
// Introduce the call to the setter function. |
- effect = graph()->NewNode( |
- javascript()->CallFunction( |
- 3, VectorSlotPair(), ConvertReceiverMode::kNotNullOrUndefined), |
- target, receiver, value, context, frame_state0, effect, control); |
+ effect = graph()->NewNode(javascript()->CallFunction( |
+ 3, 0.0f, VectorSlotPair(), |
+ ConvertReceiverMode::kNotNullOrUndefined), |
+ target, receiver, value, context, |
+ frame_state0, effect, control); |
control = graph()->NewNode(common()->IfSuccess(), effect); |
break; |
} |