Skip to content

Commit 928ec02

Browse files
committed
Use /// for header comments
1 parent dd1e8e8 commit 928ec02

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/lib/Transforms/InstCombine/InstructionCombining.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2094,12 +2094,12 @@ static bool shouldMergeGEPs(GEPOperator &GEP, GEPOperator &Src) {
20942094
return true;
20952095
}
20962096

2097-
// Find constant NewC that has property:
2098-
// shuffle(NewC, ShMask) = C
2099-
// Returns nullptr if such a constant does not exist e.g. ShMask=<0,0> C=<1,2>
2100-
//
2101-
// A 1-to-1 mapping is not required. Example:
2102-
// ShMask = <1,1,2,2> and C = <5,5,6,6> --> NewC = <poison,5,6,poison>
2097+
/// Find a constant NewC that has property:
2098+
/// shuffle(NewC, ShMask) = C
2099+
/// Returns nullptr if such a constant does not exist e.g. ShMask=<0,0> C=<1,2>
2100+
///
2101+
/// A 1-to-1 mapping is not required. Example:
2102+
/// ShMask = <1,1,2,2> and C = <5,5,6,6> --> NewC = <poison,5,6,poison>
21032103
static Constant *unshuffleConstant(ArrayRef<int> ShMask, Constant *C,
21042104
VectorType *NewCTy) {
21052105
if (isa<ScalableVectorType>(NewCTy)) {

0 commit comments

Comments
 (0)