[llvm] r372310 - Fix -Wdocumentation "@returns in a void function" warning. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 19 04:12:04 PDT 2019


Author: rksimon
Date: Thu Sep 19 04:12:04 2019
New Revision: 372310

URL: http://llvm.org/viewvc/llvm-project?rev=372310&view=rev
Log:
Fix -Wdocumentation "@returns in a void function" warning. NFCI.

Modified:
    llvm/trunk/tools/llvm-reduce/deltas/ReduceInstructions.cpp

Modified: llvm/trunk/tools/llvm-reduce/deltas/ReduceInstructions.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-reduce/deltas/ReduceInstructions.cpp?rev=372310&r1=372309&r2=372310&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-reduce/deltas/ReduceInstructions.cpp (original)
+++ llvm/trunk/tools/llvm-reduce/deltas/ReduceInstructions.cpp Thu Sep 19 04:12:04 2019
@@ -17,7 +17,6 @@ using namespace llvm;
 
 /// Removes out-of-chunk arguments from functions, and modifies their calls
 /// accordingly. It also removes allocations of out-of-chunk arguments.
-/// @returns the Module stripped of out-of-chunk functions
 static void extractInstrFromModule(std::vector<Chunk> ChunksToKeep,
                                    Module *Program) {
   int I = 0, InstCount = 0;




More information about the llvm-commits mailing list