forked from OSchip/llvm-project
[ORC] Suppress an unused variable warning for a debug-mode only use.
llvm-svn: 334911
This commit is contained in:
parent
df5776b1dc
commit
cd018a4467
|
@ -282,6 +282,7 @@ Error MaterializationResponsibility::defineMaterializing(
|
|||
// symbol error.
|
||||
for (auto &KV : NewSymbolFlags) {
|
||||
auto I = SymbolFlags.insert(KV).first;
|
||||
(void)I;
|
||||
#ifndef NDEBUG
|
||||
I->second |= JITSymbolFlags::Materializing;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue