Lines Matching refs:ConstantStruct
1040 auto *UP = ConstantStruct::get(StTy, {U, P}); in TEST_F()
1041 EXPECT_TRUE(match(ConstantStruct::get(StTy2, {U, UP}), m_Undef())); in TEST_F()
1042 EXPECT_TRUE(match(ConstantStruct::get(StTy2, {P, UP}), m_Undef())); in TEST_F()
1043 EXPECT_TRUE(match(ConstantStruct::get(StTy3, {UP, U}), m_Undef())); in TEST_F()
1044 EXPECT_TRUE(match(ConstantStruct::get(StTy3, {UP, P}), m_Undef())); in TEST_F()
1046 EXPECT_FALSE(match(ConstantStruct::get(StTy, {U, Zero}), m_Undef())); in TEST_F()
1047 EXPECT_FALSE(match(ConstantStruct::get(StTy, {Zero, U}), m_Undef())); in TEST_F()
1048 EXPECT_FALSE(match(ConstantStruct::get(StTy, {P, Zero}), m_Undef())); in TEST_F()
1049 EXPECT_FALSE(match(ConstantStruct::get(StTy, {Zero, P}), m_Undef())); in TEST_F()
1051 EXPECT_FALSE(match(ConstantStruct::get(StTy2, {Zero, UP}), m_Undef())); in TEST_F()
1052 EXPECT_FALSE(match(ConstantStruct::get(StTy3, {UP, Zero}), m_Undef())); in TEST_F()