Skip to content

Commit 35ae7ee

Browse files
authored
Remove spurious ; in ElimAvailExtern.cpp
Fix post #109203
1 parent 02c138f commit 35ae7ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/IPO/ElimAvailExtern.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ EliminateAvailableExternallyPass::run(Module &M, ModuleAnalysisManager &MAM) {
135135
// for this contextual information. Eliding it in favor of the original would
136136
// undo these optimizations.
137137
if (!eliminateAvailableExternally(M, /*Convert=*/(CtxProf && !!(*CtxProf))))
138-
;
139-
return PreservedAnalyses::all();
138+
return PreservedAnalyses::all();
140139
return PreservedAnalyses::none();
141140
}

0 commit comments

Comments
 (0)