Skip to content
Snippets Groups Projects
Commit e14ae4ec authored by Chris Lattner's avatar Chris Lattner
Browse files

add m_BitCast for matching a bitcast.

llvm-svn: 112222
parent 2976d00a
No related branches found
No related tags found
No related merge requests found
......@@ -453,6 +453,13 @@ struct CastClass_match {
}
};
/// m_BitCast
template<typename OpTy>
inline CastClass_match<OpTy, Instruction::BitCast>
m_BitCast(const OpTy &Op) {
return CastClass_match<OpTy, Instruction::BitCast>(Op);
}
/// m_PtrToInt
template<typename OpTy>
inline CastClass_match<OpTy, Instruction::PtrToInt>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment