Searched defs:m_ConstantInt (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Support/
H A DPatternMatch.h19 // if (match(Exp, m_Or(m_And(m_Value(X), m_ConstantInt(C1)),
20 // m_And(m_Value(Y), m_ConstantInt(C2))))) {
68 /// m_ConstantInt() - Match an arbitrary ConstantInt and ignore it.
69 inline class_match<ConstantInt> m_ConstantInt() { function in namespace:llvm::PatternMatch
132 /// m_ConstantInt<int64_t> - Match a ConstantInt with a specific value.
134 inline constantint_match<Val> m_ConstantInt() { function in namespace:llvm::PatternMatch
227 /// m_ConstantInt - Match a ConstantInt, capturing the value if we match.
228 inline bind_ty<ConstantInt> m_ConstantInt(ConstantInt *&CI) { return CI; } function in namespace:llvm::PatternMatch
262 /// m_ConstantInt - Match a ConstantInt and bind to its value. This does not
264 inline bind_const_intval_ty m_ConstantInt(uint64_ function in namespace:llvm::PatternMatch
[all...]

Completed in 56 milliseconds