diff options
author | Arnold Schwaighofer <aschwaighofer@apple.com> | 2013-05-05 02:01:41 +0000 |
---|---|---|
committer | Arnold Schwaighofer <aschwaighofer@apple.com> | 2013-05-05 02:01:41 +0000 |
commit | f127be1e380d47d4c6588c7445a4db90f98ab534 (patch) | |
tree | 3f1b5dbea2da34a8635f9cbbe6ed6d25704e47a9 | |
parent | 526f3ed7da88aa02bed42fe2238a60e3be64446b (diff) |
PatternMatch: Fix documentation - 'function' not 'attribute'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181146 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/PatternMatch.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h index a83a068462..51b66b0dcd 100644 --- a/include/llvm/Support/PatternMatch.h +++ b/include/llvm/Support/PatternMatch.h @@ -946,7 +946,7 @@ m_UMin(const LHS &L, const RHS &R) { return MaxMin_match<ICmpInst, LHS, RHS, umin_pred_ty>(L, R); } -/// \brief Match an 'ordered' floating point maximum attribute. +/// \brief Match an 'ordered' floating point maximum function. /// Floating point has one special value 'NaN'. Therefore, there is no total /// order. However, if we can ignore the 'NaN' value (for example, because of a /// 'no-nans-float-math' flag) a combination of a fcmp and select has 'maximum' @@ -961,7 +961,7 @@ m_OrdFMax(const LHS &L, const RHS &R) { return MaxMin_match<FCmpInst, LHS, RHS, ofmax_pred_ty>(L, R); } -/// \brief Match an 'ordered' floating point minimum attribute. +/// \brief Match an 'ordered' floating point minimum function. /// Floating point has one special value 'NaN'. Therefore, there is no total /// order. However, if we can ignore the 'NaN' value (for example, because of a /// 'no-nans-float-math' flag) a combination of a fcmp and select has 'minimum' @@ -976,7 +976,7 @@ m_OrdFMin(const LHS &L, const RHS &R) { return MaxMin_match<FCmpInst, LHS, RHS, ofmin_pred_ty>(L, R); } -/// \brief Match an 'unordered' floating point maximum attribute. +/// \brief Match an 'unordered' floating point maximum function. /// Floating point has one special value 'NaN'. Therefore, there is no total /// order. However, if we can ignore the 'NaN' value (for example, because of a /// 'no-nans-float-math' flag) a combination of a fcmp and select has 'maximum' @@ -991,7 +991,7 @@ m_UnordFMax(const LHS &L, const RHS &R) { return MaxMin_match<FCmpInst, LHS, RHS, ufmax_pred_ty>(L, R); } -/// \brief Match an 'unordered' floating point minimum attribute. +/// \brief Match an 'unordered' floating point minimum function. /// Floating point has one special value 'NaN'. Therefore, there is no total /// order. However, if we can ignore the 'NaN' value (for example, because of a /// 'no-nans-float-math' flag) a combination of a fcmp and select has 'minimum' |