aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/ReaderWrappers.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-09-12 20:56:38 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-09-12 20:56:38 +0000
commit5adf0ca0b24d46a06a4ebb20cd38e886a5626435 (patch)
tree498c9143f6277011bf4162ddb9ac6a60f27b47fa /lib/Bytecode/Reader/ReaderWrappers.cpp
parent7df0074db5aa9447d4f8d5aae4e3ef1078ad3c7f (diff)
Unbreak doxygen, according to Reid.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ReaderWrappers.cpp')
-rw-r--r--lib/Bytecode/Reader/ReaderWrappers.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Bytecode/Reader/ReaderWrappers.cpp b/lib/Bytecode/Reader/ReaderWrappers.cpp
index 813b68a4bd..09bc55b336 100644
--- a/lib/Bytecode/Reader/ReaderWrappers.cpp
+++ b/lib/Bytecode/Reader/ReaderWrappers.cpp
@@ -296,7 +296,8 @@ Module* llvm::AnalyzeBytecodeFile(
const std::string &Filename, ///< File to analyze
BytecodeAnalysis& bca, ///< Statistical output
std::string *ErrorStr, ///< Error output
- std::ostream* output) ///< Dump output
+ std::ostream* output ///< Dump output
+)
{
try {
BytecodeHandler* analyzerHandler =createBytecodeAnalyzerHandler(bca,output);
@@ -316,7 +317,8 @@ Module* llvm::AnalyzeBytecodeBuffer(
const std::string& ModuleID, ///< Identifier for the module
BytecodeAnalysis& bca, ///< The results of the analysis
std::string* ErrorStr, ///< Errors, if any.
- std::ostream* output) ///< Dump output, if any
+ std::ostream* output ///< Dump output, if any
+)
{
try {
BytecodeHandler* hdlr = createBytecodeAnalyzerHandler(bca, output);