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 32354bb commit f44451dCopy full SHA for f44451d
llvm/lib/Analysis/VectorUtils.cpp
@@ -998,9 +998,9 @@ static void getMetadataToPropagate(
998
999
// Remove any unsupported metadata kinds from Metadata.
1000
for (unsigned Idx = 0; Idx != Metadata.size();) {
1001
- if (is_contained(SupportedIDs, Metadata[Idx].first))
+ if (is_contained(SupportedIDs, Metadata[Idx].first)) {
1002
Idx++;
1003
- else {
+ } else {
1004
// Swap element to end and remove it.
1005
std::swap(Metadata[Idx], Metadata.back());
1006
Metadata.pop_back();
0 commit comments