From 652f7ea955bb433d6b7a4d33685dca9485fd7b8b Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Fri, 30 May 2008 22:47:19 +0000 Subject: Revert 51775. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51795 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Assembly/PrintModulePass.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/llvm/Assembly') diff --git a/include/llvm/Assembly/PrintModulePass.h b/include/llvm/Assembly/PrintModulePass.h index d9e4390..ee5cff5 100644 --- a/include/llvm/Assembly/PrintModulePass.h +++ b/include/llvm/Assembly/PrintModulePass.h @@ -31,8 +31,8 @@ public: static char ID; PrintModulePass() : ModulePass(intptr_t(&ID)), Out(&cerr), DeleteStream(false) {} - PrintModulePass(OStream *o, bool ds = false) - : ModulePass(intptr_t(&ID)), Out(o), DeleteStream(ds) {} + PrintModulePass(OStream *o, bool DS = false) + : ModulePass(intptr_t(&ID)), Out(o), DeleteStream(DS) {} ~PrintModulePass() { if (DeleteStream) delete Out; @@ -57,8 +57,8 @@ public: PrintFunctionPass() : FunctionPass(intptr_t(&ID)), Banner(""), Out(&cerr), DeleteStream(false) {} PrintFunctionPass(const std::string &B, OStream *o = &cout, - bool ds = false) - : FunctionPass(intptr_t(&ID)), Banner(B), Out(o), DeleteStream(ds) {} + bool DS = false) + : FunctionPass(intptr_t(&ID)), Banner(B), Out(o), DeleteStream(DS) {} inline ~PrintFunctionPass() { if (DeleteStream) delete Out; -- cgit v1.1