diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-09-19 11:12:04 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-09-19 11:12:04 +0000 |
commit | cce2342d4691ab34915025b9959c3f12589dce51 (patch) | |
tree | b6837ba59aa918aa065cdc08664b4a642bbc52f4 /llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp | |
parent | 04398c729b20c16aa06bfab4330cf1831d1f8dec (diff) | |
download | bcm5719-llvm-cce2342d4691ab34915025b9959c3f12589dce51.tar.gz bcm5719-llvm-cce2342d4691ab34915025b9959c3f12589dce51.zip |
Fix -Wdocumentation "@returns in a void function" warning. NFCI.
llvm-svn: 372310
Diffstat (limited to 'llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp')
-rw-r--r-- | llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp b/llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp index c6b798236e5..b3497ad2dc0 100644 --- a/llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp +++ b/llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp @@ -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; |