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

/external/llvm/include/llvm/IR/
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))))) {
71 /// m_ConstantInt() - Match an arbitrary ConstantInt and ignore it.
72 inline class_match<ConstantInt> m_ConstantInt() { function in namespace:llvm::PatternMatch
203 /// m_ConstantInt<int64_t> - Match a ConstantInt with a specific value.
205 inline constantint_match<Val> m_ConstantInt() { function in namespace:llvm::PatternMatch
302 /// m_ConstantInt - Match a ConstantInt, capturing the value if we match.
303 inline bind_ty<ConstantInt> m_ConstantInt(ConstantInt *&CI) { return CI; } function in namespace:llvm::PatternMatch
365 /// m_ConstantInt - Match a ConstantInt and bind to its value. This does not
367 inline bind_const_intval_ty m_ConstantInt(uint64_ function in namespace:llvm::PatternMatch
[all...]

Completed in 314 milliseconds