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 b26c514 commit ac39696Copy full SHA for ac39696
llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/DependencyGraph.h
@@ -228,7 +228,7 @@ class MemDGNode final : public DGNode {
228
/// UnscheduledSuccs counter of the predecessor if this node has not been
229
/// scheduled.
230
void addMemPred(MemDGNode *PredN) {
231
- auto Inserted = MemPreds.insert(PredN).second;
+ [[maybe_unused]] auto Inserted = MemPreds.insert(PredN).second;
232
assert(Inserted && "PredN already exists!");
233
if (!Scheduled) {
234
++PredN->UnscheduledSuccs;
0 commit comments