Use MachineBasicBlock::transferSuccessors.
[oota-llvm.git] / include / llvm / Assembly / PrintModulePass.h
index d9e4390356b68bc95762dedcaa4e6c69d84d9429..ee5cff509aaa675c48cf6b074ab483db615308f7 100644 (file)
@@ -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;