[llvm] r300031 - [IR] Fix copy and paste mistake in comment. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 11 22:57:48 PDT 2017
Author: ctopper
Date: Wed Apr 12 00:57:46 2017
New Revision: 300031
URL: http://llvm.org/viewvc/llvm-project?rev=300031&view=rev
Log:
[IR] Fix copy and paste mistake in comment. NFC
Modified:
llvm/trunk/include/llvm/IR/PatternMatch.h
Modified: llvm/trunk/include/llvm/IR/PatternMatch.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/PatternMatch.h?rev=300031&r1=300030&r2=300031&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/PatternMatch.h (original)
+++ llvm/trunk/include/llvm/IR/PatternMatch.h Wed Apr 12 00:57:46 2017
@@ -1348,7 +1348,7 @@ template <typename Val_t> inline Signum_
// Matchers for two-operands operators with the operators in either order
//
-/// \brief Matches a Add with LHS and RHS in either order.
+/// \brief Matches a BinaryOperator with LHS and RHS in either order.
template<typename LHS, typename RHS>
inline match_combine_or<AnyBinaryOp_match<LHS, RHS>,
AnyBinaryOp_match<RHS, LHS>>
More information about the llvm-commits
mailing list