reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/IR/PatternMatch.cpp
 1067   EXPECT_TRUE(match(V, m_FNeg(m_Value(Match))));
 1068   EXPECT_EQ(One, Match);
 1071   EXPECT_TRUE(match(V1, m_FNeg(m_Value(Match))));
 1072   EXPECT_EQ(One, Match);
 1075   EXPECT_FALSE(match(V2, m_FNeg(m_Value(Match))));
 1077   EXPECT_TRUE(match(V2, m_FNeg(m_Value(Match))));
 1078   EXPECT_EQ(One, Match);
 1081   EXPECT_FALSE(match(V3, m_FNeg(m_Value(Match))));