| Index: src/compiler/simplified-operator.cc
|
| diff --git a/src/compiler/simplified-operator.cc b/src/compiler/simplified-operator.cc
|
| index 8432d21d952ff7b4fd4ae5ff968a75b000cdec01..21c032fadbda7d79cdd924fbd916d817e51e0e9b 100644
|
| --- a/src/compiler/simplified-operator.cc
|
| +++ b/src/compiler/simplified-operator.cc
|
| @@ -168,6 +168,9 @@ const ElementAccess& ElementAccessOf(const Operator* op) {
|
| V(NumberMultiply, Operator::kCommutative, 2) \
|
| V(NumberDivide, Operator::kNoProperties, 2) \
|
| V(NumberModulus, Operator::kNoProperties, 2) \
|
| + V(NumberBitwiseOr, Operator::kCommutative, 2) \
|
| + V(NumberBitwiseXor, Operator::kCommutative, 2) \
|
| + V(NumberBitwiseAnd, Operator::kCommutative, 2) \
|
| V(NumberShiftLeft, Operator::kNoProperties, 2) \
|
| V(NumberShiftRight, Operator::kNoProperties, 2) \
|
| V(NumberShiftRightLogical, Operator::kNoProperties, 2) \
|
|
|