From 3d1758e08caeb345b852319f7c7ba7dcd73564ea Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 6 Dec 2006 06:16:21 +0000 Subject: [PATCH] Remove the 'printname' argument to WriteAsOperand. It is always true, and passing false would make the asmprinter fail anyway. llvm-svn: 32264 --- include/llvm/Assembly/Writer.h | 2 +- lib/Analysis/AliasAnalysisCounter.cpp | 6 +++--- lib/Analysis/AliasAnalysisEvaluator.cpp | 6 +++--- lib/Analysis/CFGPrinter.cpp | 4 ++-- lib/Analysis/DataStructure/Printer.cpp | 4 ++-- lib/Analysis/Trace.cpp | 2 +- lib/Transforms/Scalar/Reassociate.cpp | 2 +- lib/VMCore/Verifier.cpp | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h index 9ddb45e1cdf..45c9513c54f 100644 --- a/include/llvm/Assembly/Writer.h +++ b/include/llvm/Assembly/Writer.h @@ -38,7 +38,7 @@ std::ostream &WriteTypeSymbolic(std::ostream &, const Type *, const Module *M); // pointer is printed symbolically. // std::ostream &WriteAsOperand(std::ostream &, const Value *, bool PrintTy = true, - bool PrintName = true, const Module *Context = 0); + const Module *Context = 0); } // End llvm namespace diff --git a/lib/Analysis/AliasAnalysisCounter.cpp b/lib/Analysis/AliasAnalysisCounter.cpp index 6412dbbad66..d563c13c10b 100644 --- a/lib/Analysis/AliasAnalysisCounter.cpp +++ b/lib/Analysis/AliasAnalysisCounter.cpp @@ -135,9 +135,9 @@ AliasAnalysisCounter::alias(const Value *V1, unsigned V1Size, if (PrintAll || (PrintAllFailures && R == MayAlias)) { llvm_cerr << AliasString << ":\t"; llvm_cerr << "[" << V1Size << "B] "; - WriteAsOperand(std::cerr, V1, true, true, M) << ", "; + WriteAsOperand(std::cerr, V1, true, M) << ", "; llvm_cerr << "[" << V2Size << "B] "; - WriteAsOperand(std::cerr, V2, true, true, M) << "\n"; + WriteAsOperand(std::cerr, V2, true, M) << "\n"; } return R; @@ -159,7 +159,7 @@ AliasAnalysisCounter::getModRefInfo(CallSite CS, Value *P, unsigned Size) { if (PrintAll || (PrintAllFailures && R == ModRef)) { llvm_cerr << MRString << ": Ptr: "; llvm_cerr << "[" << Size << "B] "; - WriteAsOperand(std::cerr, P, true, true, M); + WriteAsOperand(std::cerr, P, true, M); llvm_cerr << "\t<->" << *CS.getInstruction(); } return R; diff --git a/lib/Analysis/AliasAnalysisEvaluator.cpp b/lib/Analysis/AliasAnalysisEvaluator.cpp index 946a2ddc9ce..d64394a8796 100644 --- a/lib/Analysis/AliasAnalysisEvaluator.cpp +++ b/lib/Analysis/AliasAnalysisEvaluator.cpp @@ -80,8 +80,8 @@ static inline void PrintResults(const char *Msg, bool P, Value *V1, Value *V2, Module *M) { if (P) { llvm_cerr << " " << Msg << ":\t"; - WriteAsOperand(std::cerr, V1, true, true, M) << ", "; - WriteAsOperand(std::cerr, V2, true, true, M) << "\n"; + WriteAsOperand(std::cerr, V1, true, M) << ", "; + WriteAsOperand(std::cerr, V2, true, M) << "\n"; } } @@ -90,7 +90,7 @@ PrintModRefResults(const char *Msg, bool P, Instruction *I, Value *Ptr, Module *M) { if (P) { llvm_cerr << " " << Msg << ": Ptr: "; - WriteAsOperand(std::cerr, Ptr, true, true, M); + WriteAsOperand(std::cerr, Ptr, true, M); llvm_cerr << "\t<->" << *I; } } diff --git a/lib/Analysis/CFGPrinter.cpp b/lib/Analysis/CFGPrinter.cpp index 3f6846e1f6e..bfc71c6686c 100644 --- a/lib/Analysis/CFGPrinter.cpp +++ b/lib/Analysis/CFGPrinter.cpp @@ -50,12 +50,12 @@ struct DOTGraphTraits : public DefaultDOTGraphTraits { std::ostringstream Out; if (CFGOnly) { - WriteAsOperand(Out, Node, false, true); + WriteAsOperand(Out, Node, false); return Out.str(); } if (Node->getName().empty()) { - WriteAsOperand(Out, Node, false, true); + WriteAsOperand(Out, Node, false); Out << ":"; } diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index ef3ed755559..af358bfbb33 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -81,7 +81,7 @@ static std::string getCaption(const DSNode *N, const DSGraph *G) { if (G) GlobalECs = &G->getGlobalECs(); for (unsigned i = 0, e = N->getGlobalsList().size(); i != e; ++i) { - WriteAsOperand(OS, N->getGlobalsList()[i], false, true, M); + WriteAsOperand(OS, N->getGlobalsList()[i], false, M); // Figure out how many globals are equivalent to this one. if (GlobalECs) { @@ -157,7 +157,7 @@ struct DOTGraphTraits : public DefaultDOTGraphTraits { for (DSGraph::ScalarMapTy::const_iterator I = VM.begin(); I != VM.end();++I) if (!isa(I->first)) { std::stringstream OS; - WriteAsOperand(OS, I->first, false, true, CurMod); + WriteAsOperand(OS, I->first, false, CurMod); GW.emitSimpleNode(I->first, "", OS.str()); // Add edge from return node to real destination diff --git a/lib/Analysis/Trace.cpp b/lib/Analysis/Trace.cpp index 91c7ffa7799..d0457557c8e 100644 --- a/lib/Analysis/Trace.cpp +++ b/lib/Analysis/Trace.cpp @@ -38,7 +38,7 @@ void Trace::print(llvm_ostream &O) const { for (const_iterator i = begin(), e = end(); i != e; ++i) { O << "; "; if (O.stream()) - WriteAsOperand(*O.stream(), *i, true, true, getModule()); + WriteAsOperand(*O.stream(), *i, true, getModule()); O << "\n"; } O << "; Trace parent function: \n" << *F; diff --git a/lib/Transforms/Scalar/Reassociate.cpp b/lib/Transforms/Scalar/Reassociate.cpp index 2df52ae0efe..b0637ba3e5a 100644 --- a/lib/Transforms/Scalar/Reassociate.cpp +++ b/lib/Transforms/Scalar/Reassociate.cpp @@ -60,7 +60,7 @@ static void PrintOps(Instruction *I, const std::vector &Ops) { std::cerr << Instruction::getOpcodeName(I->getOpcode()) << " " << *Ops[0].Op->getType(); for (unsigned i = 0, e = Ops.size(); i != e; ++i) - WriteAsOperand(std::cerr << " ", Ops[i].Op, false, true, M) + WriteAsOperand(std::cerr << " ", Ops[i].Op, false, M) << "," << Ops[i].Rank; } diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index f1e14a64bc6..4e43a0cf072 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -218,7 +218,7 @@ namespace { // Anonymous namespace for class if (isa(V)) { msgs << *V; } else { - WriteAsOperand (msgs, V, true, true, Mod); + WriteAsOperand(msgs, V, true, Mod); msgs << "\n"; } }