Skip to content

Commit cf6e91f

Browse files
vsemenov368igcbot
authored andcommitted
Fix coverity issue in VC
.
1 parent ae2b64d commit cf6e91f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IGC/VectorCompiler/lib/GenXCodeGen/GenXVectorDecomposer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ void VectorDecomposer::decompose() {
496496
}
497497

498498
while (!DecomposeStack.empty()) {
499-
auto &[U, Parts] = DecomposeStack.top();
499+
auto [U, Parts] = DecomposeStack.top();
500500
DecomposeStack.pop();
501501
decomposeTree(U, Parts);
502502
}

0 commit comments

Comments
 (0)