OSDN Git Service

Fix obvious typo.
authorEli Friedman <eli.friedman@gmail.com>
Tue, 14 Jul 2009 00:09:42 +0000 (00:09 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Tue, 14 Jul 2009 00:09:42 +0000 (00:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75563 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/PatternMatch.h

index 66dec00..fb8e387 100644 (file)
@@ -406,7 +406,7 @@ struct SelectClass_match {
 };
 
 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);
 }