Index: src/compiler/common-operator.cc |
diff --git a/src/compiler/common-operator.cc b/src/compiler/common-operator.cc |
index 4cf22991ddb01a224a85bcfee6e0ebc08c951155..eb398d4c1ff5354f2e2bc8d3688d9bd98f35620a 100644 |
--- a/src/compiler/common-operator.cc |
+++ b/src/compiler/common-operator.cc |
@@ -1248,6 +1248,13 @@ const Operator* CommonOperatorBuilder::TypedStateValues( |
TypedStateValueInfo(types, bitmask)); // parameters |
} |
+const Operator* CommonOperatorBuilder::ArgumentsObjectState() { |
+ return new (zone()) Operator( // -- |
+ IrOpcode::kArgumentsObjectState, Operator::kPure, // opcode |
+ "ArgumentsObjectState", // name |
+ 0, 0, 0, 1, 0, 0); // counts |
+} |
+ |
const Operator* CommonOperatorBuilder::ObjectState(int pointer_slots) { |
return new (zone()) Operator1<int>( // -- |
IrOpcode::kObjectState, Operator::kPure, // opcode |