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 fbb8234 commit e0b840aCopy full SHA for e0b840a
llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/SeedCollector.h
@@ -50,11 +50,6 @@ class SeedBundle {
50
/// by symbol, symbol-offset, and program order (which depends if scheduling
51
/// bottom-up or top-down).
52
void insertAt(iterator Pos, Instruction *I) {
53
-#ifdef EXPENSIVE_CHECKS
54
- for (auto Itr : Seeds) {
55
- assert(*Itr != I && "Attempt to insert an instruction twice.");
56
- }
57
-#endif
58
Seeds.insert(Pos, I);
59
NumUnusedBits += Utils::getNumBits(I);
60
}
0 commit comments