Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dgraph_test.cc298 HInstruction* second_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F() local
299 block->InsertInstructionBefore(second_instruction, got); in TEST_F()
301 ASSERT_NE(second_instruction->GetId(), -1); in TEST_F()
302 ASSERT_EQ(second_instruction->GetBlock(), block); in TEST_F()
305 ASSERT_EQ(first_instruction->GetNext(), second_instruction); in TEST_F()
307 ASSERT_EQ(second_instruction->GetNext(), got); in TEST_F()
308 ASSERT_EQ(second_instruction->GetPrevious(), first_instruction); in TEST_F()
310 ASSERT_EQ(got->GetPrevious(), second_instruction); in TEST_F()