forked from OSchip/llvm-project
Fix -Wdocumentation warning (@returns used in void function). NFCI.
llvm-svn: 368693
This commit is contained in:
parent
202d660af1
commit
bda73ae0bb
|
@ -16,7 +16,6 @@
|
|||
|
||||
/// Removes all the Defined Functions (as well as their calls)
|
||||
/// that aren't inside any of the desired Chunks.
|
||||
/// @returns the Module stripped of out-of-chunk functions
|
||||
static void extractFunctionsFromModule(const std::vector<Chunk> &ChunksToKeep,
|
||||
Module *Program) {
|
||||
// Get functions inside desired chunks
|
||||
|
@ -77,4 +76,4 @@ void llvm::reduceFunctionsDeltaPass(TestRunner &Test) {
|
|||
unsigned Functions = countDefinedFunctions(Test.getProgram());
|
||||
runDeltaPass(Test, Functions, extractFunctionsFromModule);
|
||||
outs() << "----------------------------\n";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue