Lines Matching defs:CIEs
168 // (1) There are two CIEs -- one with a personality function and one
183 SmallVector<Block *, 2> CIEs;
187 CIEs.push_back(B);
194 ASSERT_EQ(CIEs.size(), 2U);
196 // Make sure that the CIE with no edges is CIEs[0].
197 if (CIEs[1]->edges_empty())
198 std::swap(CIEs[0], CIEs[1]);
200 EXPECT_TRUE(CIEs[0]->edges_empty());
201 EXPECT_EQ(CIEs[1]->edges_size(), 1U);
210 ASSERT_TRUE(&CIE == CIEs[0] || &CIE == CIEs[1]);
217 // If the FDE points at CIEs[0] (the CIE without a personality) then it
218 // should not have an LSDA. If it points to CIEs[1] then it should have
220 if (&CIE == CIEs[0])