| Index: runtime/vm/intermediate_language_test.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_test.cc (revision 17406)
|
| +++ runtime/vm/intermediate_language_test.cc (working copy)
|
| @@ -9,7 +9,7 @@
|
|
|
| TEST_CASE(InstructionTests) {
|
| TargetEntryInstr* target_instr =
|
| - new TargetEntryInstr(1, CatchClauseNode::kInvalidTryIndex, 0);
|
| + new TargetEntryInstr(1, CatchClauseNode::kInvalidTryIndex);
|
| EXPECT(target_instr->IsBlockEntry());
|
| EXPECT(!target_instr->IsDefinition());
|
| CurrentContextInstr* context = new CurrentContextInstr();
|
| @@ -20,7 +20,7 @@
|
|
|
| TEST_CASE(OptimizationTests) {
|
| JoinEntryInstr* join =
|
| - new JoinEntryInstr(1, CatchClauseNode::kInvalidTryIndex, 0);
|
| + new JoinEntryInstr(1, CatchClauseNode::kInvalidTryIndex);
|
|
|
| Definition* def1 = new PhiInstr(join, 0);
|
| Definition* def2 = new PhiInstr(join, 0);
|
|
|