Formatting (80cols).

This commit is contained in:
Axel Naumann 2022-09-20 10:01:47 +02:00 committed by jenkins
parent d8c5c2a206
commit a319dbff2d

View File

@ -61,7 +61,8 @@ IncrementalJIT::IncrementalJIT(
// We use this callback to transfer the ownership of the ThreadSafeModule,
// which owns the Transaction's llvm::Module, to m_CompiledModules.
Jit->getIRCompileLayer().setNotifyCompiled([this](auto &MR, ThreadSafeModule TSM) {
Jit->getIRCompileLayer().setNotifyCompiled([this](auto &MR,
ThreadSafeModule TSM) {
// FIXME: Don't store them mapped by raw pointers.
const Module *Unsafe = TSM.getModuleUnlocked();
assert(!m_CompiledModules.count(Unsafe) && "Modules are compiled once");