Home
last modified time | relevance | path

Searched refs:second_instruction (Results 1 – 1 of 1) sorted by relevance

/art/compiler/optimizing/
Dgraph_test.cc297 HInstruction* second_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F() local
298 block->InsertInstructionBefore(second_instruction, got); in TEST_F()
300 ASSERT_NE(second_instruction->GetId(), -1); in TEST_F()
301 ASSERT_EQ(second_instruction->GetBlock(), block); in TEST_F()
304 ASSERT_EQ(first_instruction->GetNext(), second_instruction); in TEST_F()
306 ASSERT_EQ(second_instruction->GetNext(), got); in TEST_F()
307 ASSERT_EQ(second_instruction->GetPrevious(), first_instruction); in TEST_F()
309 ASSERT_EQ(got->GetPrevious(), second_instruction); in TEST_F()