summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/operator.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/operator.cc')
-rw-r--r--deps/v8/src/compiler/operator.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/compiler/operator.cc b/deps/v8/src/compiler/operator.cc
index 2da48ca887..d505a533b7 100644
--- a/deps/v8/src/compiler/operator.cc
+++ b/deps/v8/src/compiler/operator.cc
@@ -31,8 +31,8 @@ Operator::Operator(Opcode opcode, Properties properties, const char* mnemonic,
opcode_(opcode),
properties_(properties),
value_in_(CheckRange<uint32_t>(value_in)),
- effect_in_(CheckRange<uint16_t>(effect_in)),
- control_in_(CheckRange<uint16_t>(control_in)),
+ effect_in_(CheckRange<uint32_t>(effect_in)),
+ control_in_(CheckRange<uint32_t>(control_in)),
value_out_(CheckRange<uint32_t>(value_out)),
effect_out_(CheckRange<uint8_t>(effect_out)),
control_out_(CheckRange<uint32_t>(control_out)) {}