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 436f0c9 commit 407b010Copy full SHA for 407b010
clang/lib/AST/ExprConstant.cpp
@@ -11964,7 +11964,7 @@ bool VectorExprEvaluator::VisitCallExpr(const CallExpr *E) {
11964
assert(SourceC.getKind() == clang::APValue::Int);
11965
11966
const APInt &C = SourceC.getInt();
11967
- auto SourceLen = SourceF.getVectorLength();
+ unsigned SourceLen = SourceF.getVectorLength();
11968
SmallVector<APValue, 32> ResultElements;
11969
ResultElements.reserve(SourceLen);
11970
for (unsigned EltNum = 0; EltNum != SourceLen; ++EltNum) {
0 commit comments