mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-02 19:24:25 +00:00
Correct case of m_UIToFp to m_UIToFP to match instruction name, add m_SIToFP for consistency.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187225 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -696,10 +696,17 @@ m_ZExt(const OpTy &Op) {
|
||||
/// m_UIToFP
|
||||
template<typename OpTy>
|
||||
inline CastClass_match<OpTy, Instruction::UIToFP>
|
||||
m_UIToFp(const OpTy &Op) {
|
||||
m_UIToFP(const OpTy &Op) {
|
||||
return CastClass_match<OpTy, Instruction::UIToFP>(Op);
|
||||
}
|
||||
|
||||
/// m_SIToFP
|
||||
template<typename OpTy>
|
||||
inline CastClass_match<OpTy, Instruction::SIToFP>
|
||||
m_SIToFP(const OpTy &Op) {
|
||||
return CastClass_match<OpTy, Instruction::SIToFP>(Op);
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Matchers for unary operators
|
||||
//
|
||||
|
Reference in New Issue
Block a user