Skip to content

Commit 6662319

Browse files
committed
Remove template arguments
1 parent dced6a6 commit 6662319

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/CodeGen/SDPatternMatch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ template <typename... Preds> auto m_NoneOf(const Preds &...preds) {
222222

223223
inline Opcode_match m_Opc(unsigned Opcode) { return Opcode_match(Opcode); }
224224

225-
template <typename... Preds> auto m_Undef() {
225+
auto m_Undef() {
226226
return m_AnyOf(Opcode_match(ISD::UNDEF), Opcode_match(ISD::POISON));
227227
}
228228

0 commit comments

Comments
 (0)