We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd5b63a commit fc36a5fCopy full SHA for fc36a5f
llvm/include/llvm/CodeGen/BasicTTIImpl.h
@@ -1186,10 +1186,10 @@ class BasicTTIImplBase : public TargetTransformInfoImplCRTPBase<T> {
1186
1187
// Return the cost of multiple scalar invocation plus the cost of
1188
// inserting and extracting the values.
1189
- return getScalarizationOverhead(SrcVTy, /*Insert*/ false,
1190
- /*Extract*/ true, CostKind) +
1191
- getScalarizationOverhead(DstVTy, /*Insert*/ true,
1192
- /*Extract*/ false, CostKind) +
+ return getScalarizationOverhead(SrcVTy, /*Insert=*/ false,
+ /*Extract=*/ true, CostKind) +
+ getScalarizationOverhead(DstVTy, /*Insert=*/ true,
+ /*Extract=*/ false, CostKind) +
1193
Num * Cost;
1194
}
1195
0 commit comments