[llvm-commits] CVS: llvm/include/llvm/Support/PatternMatch.h

Chris Lattner lattner at cs.uiuc.edu
Mon Feb 13 15:06:51 PST 2006



Changes in directory llvm/include/llvm/Support:

PatternMatch.h updated: 1.6 -> 1.7
---
Log message:

Fix typo that caused build failures for things trying to use m_Or.


---
Diffs of the changes:  (+2 -2)

 PatternMatch.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/include/llvm/Support/PatternMatch.h
diff -u llvm/include/llvm/Support/PatternMatch.h:1.6 llvm/include/llvm/Support/PatternMatch.h:1.7
--- llvm/include/llvm/Support/PatternMatch.h:1.6	Tue Sep 27 01:38:05 2005
+++ llvm/include/llvm/Support/PatternMatch.h	Mon Feb 13 17:06:39 2006
@@ -130,8 +130,8 @@
 }
 
 template<typename LHS, typename RHS>
-inline BinaryOp_match<LHS, RHS, Instruction::Rem> m_Or(const LHS &L,
-                                                       const RHS &R) {
+inline BinaryOp_match<LHS, RHS, Instruction::Or> m_Or(const LHS &L,
+                                                      const RHS &R) {
   return BinaryOp_match<LHS, RHS, Instruction::Or>(L, R);
 }
 






More information about the llvm-commits mailing list