Skip to content

Commit e2cce1f

Browse files
committed
Clang format
1 parent 599cde6 commit e2cce1f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/LTO/LTOBackend.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,8 @@ static bool isEmptyModule(const Module &Mod) {
355355
// Module is empty if it has no functions, no globals, no inline asm and no
356356
// named metadata (aliases and ifuncs require functions or globals so we
357357
// don't need to check those explicitly).
358-
return Mod.empty() && Mod.global_empty() && Mod.named_metadata_empty() && Mod.getModuleInlineAsm().empty();
358+
return Mod.empty() && Mod.global_empty() && Mod.named_metadata_empty() &&
359+
Mod.getModuleInlineAsm().empty();
359360
}
360361

361362
bool lto::opt(const Config &Conf, TargetMachine *TM, unsigned Task, Module &Mod,

0 commit comments

Comments
 (0)