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 9a8235a commit 78ebaa2Copy full SHA for 78ebaa2
llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
@@ -681,10 +681,8 @@ Error LLJITBuilderState::prepareForConstruction() {
681
inconvertibleErrorCode());
682
#endif // !LLVM_ENABLE_THREADS
683
684
- LLVM_DEBUG({
685
- bool ConcurrentCompilationSettingDefaulted = !SupportConcurrentCompilation;
686
- });
687
-
+ [[maybe_unused]] bool ConcurrentCompilationSettingDefaulted =
+ !SupportConcurrentCompilation;
688
if (!SupportConcurrentCompilation) {
689
#if LLVM_ENABLE_THREADS
690
SupportConcurrentCompilation = NumCompileThreads || ES || EPC;
0 commit comments