From c70cc35ddfe2b938846c3029a7b634c7f8c47978 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 13 Feb 2006 23:06:39 +0000 Subject: [PATCH] Fix typo that caused build failures for things trying to use m_Or. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26153 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/PatternMatch.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h index 9a225dfeab5..d15ae9c4986 100644 --- a/include/llvm/Support/PatternMatch.h +++ b/include/llvm/Support/PatternMatch.h @@ -130,8 +130,8 @@ inline BinaryOp_match m_And(const LHS &L, } template -inline BinaryOp_match m_Or(const LHS &L, - const RHS &R) { +inline BinaryOp_match m_Or(const LHS &L, + const RHS &R) { return BinaryOp_match(L, R); }