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 7fcbf626557ac546913b3237c5e645aea1a53792..770498ef072b1d370d2caee068b24eb59b9f4301 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; |
} |