diff options
author | Fraser Cormack <fraser@codeplay.com> | 2022-10-05 08:08:30 +0100 |
---|---|---|
committer | Fraser Cormack <fraser@codeplay.com> | 2022-10-05 08:08:30 +0100 |
commit | a3a9b0743e317c8ada9f53efb9c3b5928aec77b8 (patch) | |
tree | 5162a83e05c684434112269f906f82ff982a5b94 /llvm/lib/CodeGen/ExpandVectorPredication.cpp | |
parent | 3362e2d57fc04d801ad8742ffaaeb27461e1cb0b (diff) | |
download | llvm-a3a9b0743e317c8ada9f53efb9c3b5928aec77b8.zip llvm-a3a9b0743e317c8ada9f53efb9c3b5928aec77b8.tar.gz llvm-a3a9b0743e317c8ada9f53efb9c3b5928aec77b8.tar.bz2 |
[VP][NFC] Remove \brief commands from doxygen comments
Following a precedent set in D46861.
Diffstat (limited to 'llvm/lib/CodeGen/ExpandVectorPredication.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ExpandVectorPredication.cpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/llvm/lib/CodeGen/ExpandVectorPredication.cpp b/llvm/lib/CodeGen/ExpandVectorPredication.cpp index ef8a580..6fdf3784 100644 --- a/llvm/lib/CodeGen/ExpandVectorPredication.cpp +++ b/llvm/lib/CodeGen/ExpandVectorPredication.cpp @@ -166,29 +166,27 @@ struct CachingVPExpander { /// length of the operation. void discardEVLParameter(VPIntrinsic &PI); - /// \brief Lower this VP binary operator to a unpredicated binary operator. + /// Lower this VP binary operator to a unpredicated binary operator. Value *expandPredicationInBinaryOperator(IRBuilder<> &Builder, VPIntrinsic &PI); - /// \brief Lower this VP reduction to a call to an unpredicated reduction - /// intrinsic. + /// Lower this VP reduction to a call to an unpredicated reduction intrinsic. Value *expandPredicationInReduction(IRBuilder<> &Builder, VPReductionIntrinsic &PI); - /// \brief Lower this VP memory operation to a non-VP intrinsic. + /// Lower this VP memory operation to a non-VP intrinsic. Value *expandPredicationInMemoryIntrinsic(IRBuilder<> &Builder, VPIntrinsic &VPI); - /// \brief Lower this VP comparison to a call to an unpredicated comparison. + /// Lower this VP comparison to a call to an unpredicated comparison. Value *expandPredicationInComparison(IRBuilder<> &Builder, VPCmpIntrinsic &PI); - /// \brief Query TTI and expand the vector predication in \p P accordingly. + /// Query TTI and expand the vector predication in \p P accordingly. Value *expandPredication(VPIntrinsic &PI); - /// \brief Determine how and whether the VPIntrinsic \p VPI shall be - /// expanded. This overrides TTI with the cl::opts listed at the top of this - /// file. + /// Determine how and whether the VPIntrinsic \p VPI shall be expanded. This + /// overrides TTI with the cl::opts listed at the top of this file. VPLegalization getVPLegalizationStrategy(const VPIntrinsic &VPI) const; bool UsingTTIOverrides; @@ -623,7 +621,7 @@ CachingVPExpander::getVPLegalizationStrategy(const VPIntrinsic &VPI) const { return VPStrat; } -/// \brief Expand llvm.vp.* intrinsics as requested by \p TTI. +/// Expand llvm.vp.* intrinsics as requested by \p TTI. bool CachingVPExpander::expandVectorPredication() { SmallVector<TransformJob, 16> Worklist; |