summaryrefslogtreecommitdiff
path: root/include/llvm/IR/PrintModulePass.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/IR/PrintModulePass.h')
-rw-r--r--include/llvm/IR/PrintModulePass.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/include/llvm/IR/PrintModulePass.h b/include/llvm/IR/PrintModulePass.h
index a7be1c9737..3c18bd59a0 100644
--- a/include/llvm/IR/PrintModulePass.h
+++ b/include/llvm/IR/PrintModulePass.h
@@ -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