Searched refs:first_instruction (Results 1 – 1 of 1) sorted by relevance
296 HInstruction* first_instruction = new (&allocator) HIntConstant(4); in TEST() local297 block->InsertInstructionBefore(first_instruction, got); in TEST()299 ASSERT_NE(first_instruction->GetId(), -1); in TEST()300 ASSERT_EQ(first_instruction->GetBlock(), block); in TEST()301 ASSERT_EQ(block->GetFirstInstruction(), first_instruction); in TEST()303 ASSERT_EQ(first_instruction->GetNext(), got); in TEST()304 ASSERT_EQ(first_instruction->GetPrevious(), nullptr); in TEST()306 ASSERT_EQ(got->GetPrevious(), first_instruction); in TEST()314 ASSERT_EQ(block->GetFirstInstruction(), first_instruction); in TEST()316 ASSERT_EQ(first_instruction->GetNext(), second_instruction); in TEST()[all …]