Skip to content

Commit 6932f47

Browse files
[NFC][VPlan] Correct two typos in comments.
1 parent 125aa10 commit 6932f47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/lib/Transforms/Vectorize/VPlan.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2042,7 +2042,7 @@ class VPBlendRecipe : public VPSingleDefRecipe {
20422042
public:
20432043
/// The blend operation is a User of the incoming values and of their
20442044
/// respective masks, ordered [I0, M0, I1, M1, I2, M2, ...]. Note that M0 can
2045-
/// be ommited (implied by passing an odd number of operands) in which case
2045+
/// be omitted (implied by passing an odd number of operands) in which case
20462046
/// all other incoming values are merged into it.
20472047
VPBlendRecipe(PHINode *Phi, ArrayRef<VPValue *> Operands)
20482048
: VPSingleDefRecipe(VPDef::VPBlendSC, Operands, Phi, Phi->getDebugLoc()) {

llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ static void simplifyRecipe(VPRecipeBase &R, VPTypeAnalysis &TypeInfo) {
914914
if (Blend->isNormalized())
915915
return;
916916

917-
// Normalize the blend so its first incomming value is used as the initial
917+
// Normalize the blend so its first incoming value is used as the initial
918918
// value with the others blended into it.
919919

920920
unsigned StartIndex = 0;

0 commit comments

Comments
 (0)