Skip to content

Commit fc36a5f

Browse files
preamesarsenm
andauthored
Update llvm/include/llvm/CodeGen/BasicTTIImpl.h
Co-authored-by: Matt Arsenault <[email protected]>
1 parent bd5b63a commit fc36a5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/include/llvm/CodeGen/BasicTTIImpl.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1186,10 +1186,10 @@ class BasicTTIImplBase : public TargetTransformInfoImplCRTPBase<T> {
11861186

11871187
// Return the cost of multiple scalar invocation plus the cost of
11881188
// inserting and extracting the values.
1189-
return getScalarizationOverhead(SrcVTy, /*Insert*/ false,
1190-
/*Extract*/ true, CostKind) +
1191-
getScalarizationOverhead(DstVTy, /*Insert*/ true,
1192-
/*Extract*/ false, CostKind) +
1189+
return getScalarizationOverhead(SrcVTy, /*Insert=*/ false,
1190+
/*Extract=*/ true, CostKind) +
1191+
getScalarizationOverhead(DstVTy, /*Insert=*/ true,
1192+
/*Extract=*/ false, CostKind) +
11931193
Num * Cost;
11941194
}
11951195

0 commit comments

Comments
 (0)