Skip to content

Commit bda73ae

Browse files
committed
Fix -Wdocumentation warning (@returns used in void function). NFCI.
llvm-svn: 368693
1 parent 202d660 commit bda73ae

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/tools/llvm-reduce/deltas/ReduceFunctions.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
/// Removes all the Defined Functions (as well as their calls)
1818
/// that aren't inside any of the desired Chunks.
19-
/// @returns the Module stripped of out-of-chunk functions
2019
static void extractFunctionsFromModule(const std::vector<Chunk> &ChunksToKeep,
2120
Module *Program) {
2221
// Get functions inside desired chunks
@@ -77,4 +76,4 @@ void llvm::reduceFunctionsDeltaPass(TestRunner &Test) {
7776
unsigned Functions = countDefinedFunctions(Test.getProgram());
7877
runDeltaPass(Test, Functions, extractFunctionsFromModule);
7978
outs() << "----------------------------\n";
80-
}
79+
}

0 commit comments

Comments
 (0)