[llvm] a3a9b07 - [VP][NFC] Remove \brief commands from doxygen comments

Fraser Cormack via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 5 00:10:40 PDT 2022


Author: Fraser Cormack
Date: 2022-10-05T08:08:30+01:00
New Revision: a3a9b0743e317c8ada9f53efb9c3b5928aec77b8

URL: https://github.com/llvm/llvm-project/commit/a3a9b0743e317c8ada9f53efb9c3b5928aec77b8
DIFF: https://github.com/llvm/llvm-project/commit/a3a9b0743e317c8ada9f53efb9c3b5928aec77b8.diff

LOG: [VP][NFC] Remove \brief commands from doxygen comments

Following a precedent set in D46861.

Added: 
    

Modified: 
    llvm/lib/CodeGen/ExpandVectorPredication.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/ExpandVectorPredication.cpp b/llvm/lib/CodeGen/ExpandVectorPredication.cpp
index ef8a58057315..6fdf37849a51 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;
 


        


More information about the llvm-commits mailing list