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

References

unittests/IR/PatternMatch.cpp
  478   Value *One64Z = IRB.CreateZExt(One32, IntegerType::getInt64Ty(Ctx));
  479   Value *One64S = IRB.CreateSExt(One32, IntegerType::getInt64Ty(Ctx));
  481   EXPECT_TRUE(m_One().match(One32));
  485   EXPECT_FALSE(m_ZExt(m_One()).match(One32));
  489   EXPECT_FALSE(m_SExt(m_One()).match(One32));
  493   EXPECT_TRUE(m_ZExtOrSelf(m_One()).match(One32));
  497   EXPECT_TRUE(m_SExtOrSelf(m_One()).match(One32));
  501   EXPECT_FALSE(m_ZExtOrSExt(m_One()).match(One32));
  505   EXPECT_TRUE(m_ZExtOrSExtOrSelf(m_One()).match(One32));