summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-05-30 17:16:20 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-05-30 17:16:20 +0000
commitbabf11f249c7c6399c66f2567d4e7efa9c37a9c3 (patch)
tree816778a63435b4ba76dc9c06038b28739fcf38f1 /include/llvm/Assembly
parent33540adca55b95a5fdbb0dc783ded319a90b4bc1 (diff)
downloadllvm-babf11f249c7c6399c66f2567d4e7efa9c37a9c3.tar.gz
llvm-babf11f249c7c6399c66f2567d4e7efa9c37a9c3.tar.bz2
llvm-babf11f249c7c6399c66f2567d4e7efa9c37a9c3.tar.xz
Patches for building llvm on Solaris x86. Contributed by Nathan Keynes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51775 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/PrintModulePass.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Assembly/PrintModulePass.h b/include/llvm/Assembly/PrintModulePass.h
index ee5cff509a..d9e4390356 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;