diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h index 35a9c07b75c..b1732b2550f 100644 --- a/include/llvm/Support/PatternMatch.h +++ b/include/llvm/Support/PatternMatch.h @@ -696,14 +696,14 @@ m_ZExt(const OpTy &Op) { /// m_UIToFP template inline CastClass_match -m_UIToFP(const OpTy &Op) { +m_UIToFP(const OpTy &Op) { return CastClass_match(Op); } /// m_SIToFP template inline CastClass_match -m_SIToFP(const OpTy &Op) { +m_SIToFP(const OpTy &Op) { return CastClass_match(Op); }