Skip to content

Commit 1945d6a

Browse files
committed
Fix format
1 parent 1c3fba5 commit 1945d6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/tools/dsymutil/DwarfLinkerForBinary.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,8 @@ bool DwarfLinkerForBinary::linkImpl(
796796
Obj->getObjectFilename());
797797
// Only skip swiftmodules that could be parsed and are positively
798798
// identified as textual. Do so only when the option allows.
799-
} else if (*FromInterfaceOrErr && !Options.IncludeSwiftModulesFromInterface) {
799+
} else if (*FromInterfaceOrErr &&
800+
!Options.IncludeSwiftModulesFromInterface) {
800801
if (Options.Verbose)
801802
outs() << "Skipping compiled textual Swift interface: "
802803
<< Obj->getObjectFilename() << "\n";

0 commit comments

Comments
 (0)