aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-07-14 00:09:42 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-07-14 00:09:42 +0000
commit8f5874a96d59783c6393164e3c5b4e4a7b61e064 (patch)
tree4f08894e694b5e7cf33c68c85d3835460a39f685
parent0473735371cb31e40f98d7b6022b84be5932bcf0 (diff)
downloadexternal_llvm-8f5874a96d59783c6393164e3c5b4e4a7b61e064.zip
external_llvm-8f5874a96d59783c6393164e3c5b4e4a7b61e064.tar.gz
external_llvm-8f5874a96d59783c6393164e3c5b4e4a7b61e064.tar.bz2
Fix obvious typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75563 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/PatternMatch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h
index 66dec00..fb8e387 100644
--- a/include/llvm/Support/PatternMatch.h
+++ b/include/llvm/Support/PatternMatch.h
@@ -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);
}