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 | dbcd4fda49daae37418a774edd5426bfa90ca1b0 (patch) | |
tree | 350af1bb1dcc6fb4a8f96bb91532ea2abfc2581a /llvm/lib/Bytecode | |
parent | 746dbfebc8467318432ba50df5ce55f4a8e010bc (diff) | |
download | bcm5719-llvm-dbcd4fda49daae37418a774edd5426bfa90ca1b0.tar.gz bcm5719-llvm-dbcd4fda49daae37418a774edd5426bfa90ca1b0.zip |
Fix code spacing/alignment
llvm-svn: 16297
Diffstat (limited to 'llvm/lib/Bytecode')
-rw-r--r-- | llvm/lib/Bytecode/Reader/ReaderWrappers.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/Bytecode/Reader/ReaderWrappers.cpp b/llvm/lib/Bytecode/Reader/ReaderWrappers.cpp index 4472d2ead3f..813b68a4bdf 100644 --- a/llvm/lib/Bytecode/Reader/ReaderWrappers.cpp +++ b/llvm/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(); |