diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-12 20:47:33 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-12 20:47:33 +0000 |
commit | 7df0074db5aa9447d4f8d5aae4e3ef1078ad3c7f (patch) | |
tree | eddc87a1c6c4b788cb0c2b83018bc307e32ca416 | |
parent | 70e2d38361b675ed8c3d874d091636c470795550 (diff) | |
download | external_llvm-7df0074db5aa9447d4f8d5aae4e3ef1078ad3c7f.zip external_llvm-7df0074db5aa9447d4f8d5aae4e3ef1078ad3c7f.tar.gz external_llvm-7df0074db5aa9447d4f8d5aae4e3ef1078ad3c7f.tar.bz2 |
Fix code spacing/alignment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16297 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Bytecode/Reader/ReaderWrappers.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/Bytecode/Reader/ReaderWrappers.cpp b/lib/Bytecode/Reader/ReaderWrappers.cpp index 4472d2e..813b68a 100644 --- a/lib/Bytecode/Reader/ReaderWrappers.cpp +++ b/lib/Bytecode/Reader/ReaderWrappers.cpp @@ -296,11 +296,10 @@ 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); + BytecodeHandler* analyzerHandler =createBytecodeAnalyzerHandler(bca,output); std::auto_ptr<ModuleProvider> AMP( getBytecodeModuleProvider(Filename,analyzerHandler)); return AMP->releaseModule(); @@ -317,8 +316,7 @@ 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); @@ -332,7 +330,7 @@ Module* llvm::AnalyzeBytecodeBuffer( } bool llvm::GetBytecodeDependentLibraries(const std::string &fname, - Module::LibraryListType& deplibs) { + Module::LibraryListType& deplibs) { try { std::auto_ptr<ModuleProvider> AMP( getBytecodeModuleProvider(fname)); Module* M = AMP->releaseModule(); |