[llvm] r199040 - [PM] Un-indent this file-level namespace. It's far more common to not

Chandler Carruth chandlerc at gmail.com
Sun Jan 12 02:56:58 PST 2014


Author: chandlerc
Date: Sun Jan 12 04:56:57 2014
New Revision: 199040

URL: http://llvm.org/viewvc/llvm-project?rev=199040&view=rev
Log:
[PM] Un-indent this file-level namespace. It's far more common to not
indent the outer-most llvm namespace in header files.

Modified:
    llvm/trunk/include/llvm/IR/PrintModulePass.h

Modified: llvm/trunk/include/llvm/IR/PrintModulePass.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/PrintModulePass.h?rev=199040&r1=199039&r2=199040&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/PrintModulePass.h (original)
+++ llvm/trunk/include/llvm/IR/PrintModulePass.h Sun Jan 12 04:56:57 2014
@@ -21,28 +21,28 @@
 #include <string>
 
 namespace llvm {
-  class FunctionPass;
-  class ModulePass;
-  class BasicBlockPass;
-  class raw_ostream;
-  
-  /// createPrintModulePass - Create and return a pass that writes the
-  /// module to the specified raw_ostream.
-  ModulePass *createPrintModulePass(raw_ostream *OS,
-                                    bool DeleteStream=false,
-                                    const std::string &Banner = "");
-  
-  /// createPrintFunctionPass - Create and return a pass that prints
-  /// functions to the specified raw_ostream as they are processed.
-  FunctionPass *createPrintFunctionPass(const std::string &Banner,
-                                        raw_ostream *OS, 
-                                        bool DeleteStream=false);  
-
-  /// createPrintBasicBlockPass - Create and return a pass that writes the
-  /// BB to the specified raw_ostream.
-  BasicBlockPass *createPrintBasicBlockPass(raw_ostream *OS,
-                                            bool DeleteStream=false,
-                                            const std::string &Banner = "");
+class FunctionPass;
+class ModulePass;
+class BasicBlockPass;
+class raw_ostream;
+
+/// createPrintModulePass - Create and return a pass that writes the
+/// module to the specified raw_ostream.
+ModulePass *createPrintModulePass(raw_ostream *OS, bool DeleteStream = false,
+                                  const std::string &Banner = "");
+
+/// createPrintFunctionPass - Create and return a pass that prints
+/// functions to the specified raw_ostream as they are processed.
+FunctionPass *createPrintFunctionPass(const std::string &Banner,
+                                      raw_ostream *OS,
+                                      bool DeleteStream = false);
+
+/// createPrintBasicBlockPass - Create and return a pass that writes the
+/// BB to the specified raw_ostream.
+BasicBlockPass *createPrintBasicBlockPass(raw_ostream *OS,
+                                          bool DeleteStream = false,
+                                          const std::string &Banner = "");
+
 } // End llvm namespace
 
 #endif





More information about the llvm-commits mailing list