Skip to content

Commit c077b08

Browse files
committed
!fixup fix formatting
1 parent 02bd494 commit c077b08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/IPO/MergeFunctions.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,8 @@ void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
901901
// That is the case if F is either interposable or if G is either weak_odr or
902902
// linkonce_odr.
903903
if (F->isInterposable() || (isODR(F) && isODR(G))) {
904-
assert((!isODR(G) || isODR(F)) && "if G is ODR, F must also be ODR due to ordering");
904+
assert((!isODR(G) || isODR(F)) &&
905+
"if G is ODR, F must also be ODR due to ordering");
905906

906907
// Both writeThunkOrAlias() calls below must succeed, either because we can
907908
// create aliases for G and NewF, or because a thunk for F is profitable.

0 commit comments

Comments
 (0)