[llvm-commits] [llvm] r75563 - /llvm/trunk/include/llvm/Support/PatternMatch.h
Eli Friedman
eli.friedman at gmail.com
Mon Jul 13 17:09:50 PDT 2009
Author: efriedma
Date: Mon Jul 13 19:09:42 2009
New Revision: 75563
URL: http://llvm.org/viewvc/llvm-project?rev=75563&view=rev
Log:
Fix obvious typo.
Modified:
llvm/trunk/include/llvm/Support/PatternMatch.h
Modified: llvm/trunk/include/llvm/Support/PatternMatch.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/PatternMatch.h?rev=75563&r1=75562&r2=75563&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/PatternMatch.h (original)
+++ llvm/trunk/include/llvm/Support/PatternMatch.h Mon Jul 13 19:09:42 2009
@@ -406,7 +406,7 @@
};
template<typename Cond, typename LHS, typename RHS>
-inline SelectClass_match<Cond, RHS, LHS>
+inline SelectClass_match<Cond, LHS, RHS>
m_Select(const Cond &C, const LHS &L, const RHS &R) {
return SelectClass_match<Cond, LHS, RHS>(C, L, R);
}
More information about the llvm-commits
mailing list