Skip to content

Commit a3a9b07

Browse files
committed
[VP][NFC] Remove \brief commands from doxygen comments
Following a precedent set in D46861.
1 parent 3362e2d commit a3a9b07

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

llvm/lib/CodeGen/ExpandVectorPredication.cpp

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -166,29 +166,27 @@ struct CachingVPExpander {
166166
/// length of the operation.
167167
void discardEVLParameter(VPIntrinsic &PI);
168168

169-
/// \brief Lower this VP binary operator to a unpredicated binary operator.
169+
/// Lower this VP binary operator to a unpredicated binary operator.
170170
Value *expandPredicationInBinaryOperator(IRBuilder<> &Builder,
171171
VPIntrinsic &PI);
172172

173-
/// \brief Lower this VP reduction to a call to an unpredicated reduction
174-
/// intrinsic.
173+
/// Lower this VP reduction to a call to an unpredicated reduction intrinsic.
175174
Value *expandPredicationInReduction(IRBuilder<> &Builder,
176175
VPReductionIntrinsic &PI);
177176

178-
/// \brief Lower this VP memory operation to a non-VP intrinsic.
177+
/// Lower this VP memory operation to a non-VP intrinsic.
179178
Value *expandPredicationInMemoryIntrinsic(IRBuilder<> &Builder,
180179
VPIntrinsic &VPI);
181180

182-
/// \brief Lower this VP comparison to a call to an unpredicated comparison.
181+
/// Lower this VP comparison to a call to an unpredicated comparison.
183182
Value *expandPredicationInComparison(IRBuilder<> &Builder,
184183
VPCmpIntrinsic &PI);
185184

186-
/// \brief Query TTI and expand the vector predication in \p P accordingly.
185+
/// Query TTI and expand the vector predication in \p P accordingly.
187186
Value *expandPredication(VPIntrinsic &PI);
188187

189-
/// \brief Determine how and whether the VPIntrinsic \p VPI shall be
190-
/// expanded. This overrides TTI with the cl::opts listed at the top of this
191-
/// file.
188+
/// Determine how and whether the VPIntrinsic \p VPI shall be expanded. This
189+
/// overrides TTI with the cl::opts listed at the top of this file.
192190
VPLegalization getVPLegalizationStrategy(const VPIntrinsic &VPI) const;
193191
bool UsingTTIOverrides;
194192

@@ -623,7 +621,7 @@ CachingVPExpander::getVPLegalizationStrategy(const VPIntrinsic &VPI) const {
623621
return VPStrat;
624622
}
625623

626-
/// \brief Expand llvm.vp.* intrinsics as requested by \p TTI.
624+
/// Expand llvm.vp.* intrinsics as requested by \p TTI.
627625
bool CachingVPExpander::expandVectorPredication() {
628626
SmallVector<TransformJob, 16> Worklist;
629627

0 commit comments

Comments
 (0)