Chromium Code Reviews| Index: src/compiler/verifier.cc |
| diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc |
| index f762c61157cdd2fb7bde33fc56116b6ee42fd79d..5793e3e1dcc4e4383bab67ccb7c32cc36cfebefa 100644 |
| --- a/src/compiler/verifier.cc |
| +++ b/src/compiler/verifier.cc |
| @@ -345,6 +345,11 @@ void Verifier::Visitor::Check(Node* node) { |
| // Type is a number. |
| CheckUpperIs(node, Type::Number()); |
| break; |
| + case IrOpcode::kRelocatableInt32Constant: |
| + case IrOpcode::kRelocatableInt64Constant: |
| + // TODO(gdeepti): Add accurate checking for relocatable constants. |
|
titzer
2016/03/23 20:35:36
You can probably drop this TODO. This looks fine t
gdeepti1
2016/03/31 22:29:54
Done.
|
| + CHECK_EQ(0, input_count); |
| + break; |
| case IrOpcode::kHeapConstant: |
| // Constants have no inputs. |
| CHECK_EQ(0, input_count); |