Fix code spacing/alignment
authorMisha Brukman <brukman+llvm@gmail.com>
Sun, 12 Sep 2004 20:47:33 +0000 (20:47 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Sun, 12 Sep 2004 20:47:33 +0000 (20:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16297 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Reader/ReaderWrappers.cpp

index 4472d2ead3f1ae2e46184e26d4ce76bb07e73bb1..813b68a4bdf159e02bc8e3ed34e76cbd923033e1 100644 (file)
@@ -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();