Skip to content

Commit 92b3c79

Browse files
committed
!fixup fix formatting
1 parent 0dffdbe commit 92b3c79

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/IPO/MergeFunctions.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,8 +880,7 @@ void MergeFunctions::writeAlias(Function *F, Function *G) {
880880
// profitable. Returns false if neither is the case. If \p G is not needed (e.g.
881881
// it is discardable and linkonce_odr), \p G is removed directly.
882882
bool MergeFunctions::writeThunkOrAliasIfNeeded(Function *F, Function *G) {
883-
if (G->isDiscardableIfUnused() &&
884-
G->use_empty() && !MergeFunctionsPDI) {
883+
if (G->isDiscardableIfUnused() && G->use_empty() && !MergeFunctionsPDI) {
885884
G->eraseFromParent();
886885
return true;
887886
}

0 commit comments

Comments
 (0)