diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-15 04:09:00 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-15 04:09:00 +0000 |
commit | 10e3fa28d0df4d17130fab08a2c65e6cf7d2c01b (patch) | |
tree | 23d9b11a2468c3a3eef522a3df9e591849b2e159 /llvm/tools/llvm-reduce | |
parent | 14f7560020ca4c678b52f457e32518be16436dfb (diff) | |
download | bcm5719-llvm-10e3fa28d0df4d17130fab08a2c65e6cf7d2c01b.tar.gz bcm5719-llvm-10e3fa28d0df4d17130fab08a2c65e6cf7d2c01b.zip |
[NFC] Remove documentation comment to fix warning.
Remove the @return to fix the warning: '@returns' command used in a
comment that is attached to a function returning void [-Wdocumentation]
llvm-svn: 368957
Diffstat (limited to 'llvm/tools/llvm-reduce')
-rw-r--r-- | llvm/tools/llvm-reduce/deltas/ReduceGlobalVars.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/tools/llvm-reduce/deltas/ReduceGlobalVars.cpp b/llvm/tools/llvm-reduce/deltas/ReduceGlobalVars.cpp index 15bb5a79cb3..efe30c4ac3c 100644 --- a/llvm/tools/llvm-reduce/deltas/ReduceGlobalVars.cpp +++ b/llvm/tools/llvm-reduce/deltas/ReduceGlobalVars.cpp @@ -14,7 +14,6 @@ #include "ReduceGlobalVars.h" /// Removes all the Initialized GVs that aren't inside the desired Chunks. -/// @returns the Module stripped of out-of-chunk GVs static void extractGVsFromModule(std::vector<Chunk> ChunksToKeep, Module *Program) { // Get GVs inside desired chunks |