Index: src/compiler/simplified-lowering.cc |
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc |
index 5dcb37fae83f3b098278c203a7d4823c6d259314..f5bcab1617bfe291fab5c1fb7a41457e5d7fb517 100644 |
--- a/src/compiler/simplified-lowering.cc |
+++ b/src/compiler/simplified-lowering.cc |
@@ -1010,8 +1010,9 @@ class RepresentationSelector { |
machine_type.semantic() == MachineSemantic::kUint32); |
(*types)[i] = machine_type; |
} |
- NodeProperties::ChangeOp(node, |
- jsgraph_->common()->TypedStateValues(types)); |
+ uint32_t mask = OpParameter<uint32_t>(node); |
Jarin
2016/12/07 08:56:20
Descriptive name, please.
You should not use OpPa
Leszek Swirski
2016/12/08 15:44:30
Done, throughout. Interesting point about the type
|
+ NodeProperties::ChangeOp( |
+ node, jsgraph_->common()->TypedStateValues(types, mask)); |
} |
SetOutput(node, MachineRepresentation::kTagged); |
} |