[llvm-commits] CVS: llvm/lib/Bytecode/Reader/ReaderWrappers.cpp

Misha Brukman brukman at cs.uiuc.edu
Sun Sep 12 13:47:43 PDT 2004



Changes in directory llvm/lib/Bytecode/Reader:

ReaderWrappers.cpp updated: 1.30 -> 1.31
---
Log message:

Fix code spacing/alignment


---
Diffs of the changes:  (+4 -6)

Index: llvm/lib/Bytecode/Reader/ReaderWrappers.cpp
diff -u llvm/lib/Bytecode/Reader/ReaderWrappers.cpp:1.30 llvm/lib/Bytecode/Reader/ReaderWrappers.cpp:1.31
--- llvm/lib/Bytecode/Reader/ReaderWrappers.cpp:1.30	Fri Sep 10 23:22:58 2004
+++ llvm/lib/Bytecode/Reader/ReaderWrappers.cpp	Sun Sep 12 15:47:33 2004
@@ -296,11 +296,10 @@
   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 @@
   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 @@
 }
 
 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();






More information about the llvm-commits mailing list