From dbd37e9827f90cd6a4398f7ae2061bd74c2dfaf6 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sun, 12 Jan 2014 10:56:57 +0000 Subject: [PATCH] [PM] Un-indent this file-level namespace. It's far more common to not indent the outer-most llvm namespace in header files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199040 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/PrintModulePass.h | 44 +++++++++++++++---------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/include/llvm/IR/PrintModulePass.h b/include/llvm/IR/PrintModulePass.h index a7be1c97379..3c18bd59a0a 100644 --- a/include/llvm/IR/PrintModulePass.h +++ b/include/llvm/IR/PrintModulePass.h @@ -21,28 +21,28 @@ #include 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 -- 2.34.1