Lines Matching defs:isGuaranteedNotToBeUndefOrPoison
1044 TEST_F(ValueTrackingTest, isGuaranteedNotToBeUndefOrPoison) {
1051 EXPECT_EQ(isGuaranteedNotToBeUndefOrPoison(A), true);
1052 EXPECT_EQ(isGuaranteedNotToBeUndefOrPoison(UndefValue::get(IntegerType::get(Context, 8))), false);
1053 EXPECT_EQ(isGuaranteedNotToBeUndefOrPoison(PoisonValue::get(IntegerType::get(Context, 8))), false);
1065 EXPECT_TRUE(isGuaranteedNotToBeUndefOrPoison(V1));
1071 EXPECT_FALSE(isGuaranteedNotToBeUndefOrPoison(V2));
1077 EXPECT_FALSE(isGuaranteedNotToBeUndefOrPoison(V3));
1104 EXPECT_FALSE(isGuaranteedNotToBeUndefOrPoison(A, &AC, CxtI, &DT));
1105 EXPECT_FALSE(isGuaranteedNotToBeUndefOrPoison(A, &AC, CxtI2, &DT));
1106 EXPECT_TRUE(isGuaranteedNotToBeUndefOrPoison(A, &AC, CxtI3, &DT));