#if GEN_LLVM #include #endif #include namespace divine { namespace llvm { bool initMultithreaded() { #if GEN_LLVM return ::llvm::llvm_is_multithreaded() || ::llvm::llvm_start_multithreaded(); #else ASSERT_UNREACHABLE( "LLVM not available" ); #endif } } }