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 b686600 commit b172f4aCopy full SHA for b172f4a
llvm/lib/SandboxIR/SandboxIR.cpp
@@ -581,7 +581,8 @@ Value *Context::registerValue(std::unique_ptr<Value> &&VPtr) {
581
assert(VPtr->getSubclassID() != Value::ClassID::User &&
582
"Can't register a user!");
583
Value *V = VPtr.get();
584
- auto Pair = LLVMValueToValueMap.insert({VPtr->Val, std::move(VPtr)});
+ [[maybe_unused]] auto Pair =
585
+ LLVMValueToValueMap.insert({VPtr->Val, std::move(VPtr)});
586
assert(Pair.second && "Already exists!");
587
return V;
588
}
0 commit comments