| Index: runtime/vm/intermediate_language_test.cc
|
| diff --git a/runtime/vm/intermediate_language_test.cc b/runtime/vm/intermediate_language_test.cc
|
| index cc02c038decb8f2133e142905db13e562cfa9ace..71b48fb97bd7de29f5db59bfb72f527e4c6c131b 100644
|
| --- a/runtime/vm/intermediate_language_test.cc
|
| +++ b/runtime/vm/intermediate_language_test.cc
|
| @@ -9,7 +9,7 @@ namespace dart {
|
|
|
| TEST_CASE(InstructionTests) {
|
| TargetEntryInstr* target_instr =
|
| - new TargetEntryInstr(1, CatchClauseNode::kInvalidTryIndex);
|
| + new TargetEntryInstr(CatchClauseNode::kInvalidTryIndex);
|
| EXPECT(target_instr->IsBlockEntry());
|
| EXPECT(!target_instr->IsDefinition());
|
| CurrentContextInstr* context = new CurrentContextInstr();
|
| @@ -20,7 +20,7 @@ TEST_CASE(InstructionTests) {
|
|
|
| TEST_CASE(OptimizationTests) {
|
| JoinEntryInstr* join =
|
| - new JoinEntryInstr(1, CatchClauseNode::kInvalidTryIndex);
|
| + new JoinEntryInstr(CatchClauseNode::kInvalidTryIndex);
|
|
|
| Definition* def1 = new PhiInstr(join, 0);
|
| Definition* def2 = new PhiInstr(join, 0);
|
|
|