Lines Matching defs:inst_sp
72 InstructionSP inst_sp;
73 inst_sp = inst_list.GetInstructionAtIndex(0);
74 EXPECT_TRUE(inst_sp->IsCall());
75 EXPECT_TRUE(inst_sp->DoesBranch());
77 inst_sp = inst_list.GetInstructionAtIndex(1);
78 EXPECT_TRUE(inst_sp->IsCall());
79 EXPECT_TRUE(inst_sp->DoesBranch());
81 inst_sp = inst_list.GetInstructionAtIndex(2);
82 EXPECT_FALSE(inst_sp->IsCall());
83 EXPECT_TRUE(inst_sp->DoesBranch());
85 inst_sp = inst_list.GetInstructionAtIndex(3);
86 EXPECT_FALSE(inst_sp->IsCall());
87 EXPECT_TRUE(inst_sp->DoesBranch());
89 inst_sp = inst_list.GetInstructionAtIndex(4);
90 EXPECT_FALSE(inst_sp->IsCall());
91 EXPECT_TRUE(inst_sp->DoesBranch());