From 1023a9492f36c7cb67d9a36da270beecfb29e15b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 13 Jan 2014 15:10:11 +0000 Subject: [PATCH] fix a -Wdocumentation warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199113 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Bitcode/BitcodeWriterPass.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Bitcode/BitcodeWriterPass.h b/include/llvm/Bitcode/BitcodeWriterPass.h index e423954d52c..898cd523bd0 100644 --- a/include/llvm/Bitcode/BitcodeWriterPass.h +++ b/include/llvm/Bitcode/BitcodeWriterPass.h @@ -40,7 +40,7 @@ public: explicit BitcodeWriterPass(raw_ostream &OS) : OS(OS) {} /// \brief Run the bitcode writer pass, and output the module to the selected - /// \brief output stream. + /// output stream. PreservedAnalyses run(Module *M); static StringRef name() { return "BitcodeWriterPass"; }