Index: src/compiler/common-operator.cc |
diff --git a/src/compiler/common-operator.cc b/src/compiler/common-operator.cc |
index 49307d0cad14eda49704bd6efd580a452937ca48..b9aadefdae80a8e18c7f177a797d540c619f30a0 100644 |
--- a/src/compiler/common-operator.cc |
+++ b/src/compiler/common-operator.cc |
@@ -315,11 +315,11 @@ const Operator* CommonOperatorBuilder::Parameter(int index) { |
const Operator* CommonOperatorBuilder::OsrValue(int index) { |
- return new (zone()) Operator1<int>( // -- |
- IrOpcode::kOsrValue, Operator::kPure, // opcode |
- "OsrValue", // name |
- 0, 0, 1, 1, 0, 0, // counts |
- index); // parameter |
+ return new (zone()) Operator1<int>( // -- |
+ IrOpcode::kOsrValue, Operator::kNoProperties, // opcode |
+ "OsrValue", // name |
+ 0, 0, 1, 1, 0, 0, // counts |
+ index); // parameter |
} |