From 7e7db1030234516755bea40138a5700e5b4e9efe Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 28 Nov 2013 19:35:07 +0000 Subject: [PATCH] Remove an always true parameter. llvm-svn: 195931 --- include/llvm/CodeGen/AsmPrinter.h | 9 +++------ lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 8 ++------ 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 4bda0f1603a..3641dc95428 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -304,13 +304,10 @@ namespace llvm { /// stem. MCSymbol *GetTempSymbol(StringRef Name) const; - - /// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with - /// global value name as its base, with the specified suffix, and where the - /// symbol is forced to have private linkage if ForcePrivate is true. + /// Return the MCSymbol for a private symbol with global value name as its + /// base, with the specified suffix. MCSymbol *GetSymbolWithGlobalValueBase(const GlobalValue *GV, - StringRef Suffix, - bool ForcePrivate = true) const; + StringRef Suffix) const; /// GetExternalSymbolSymbol - Return the MCSymbol for the specified /// ExternalSymbol. diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 6f4bd55c63a..6273b4ad689 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -2033,14 +2033,10 @@ MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const { Twine(UID) + "_set_" + Twine(MBBID)); } -/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with -/// global value name as its base, with the specified suffix, and where the -/// symbol is forced to have private linkage if ForcePrivate is true. MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV, - StringRef Suffix, - bool ForcePrivate) const { + StringRef Suffix) const { SmallString<60> NameStr; - Mang->getNameWithPrefix(NameStr, GV, ForcePrivate); + Mang->getNameWithPrefix(NameStr, GV, true); NameStr.append(Suffix.begin(), Suffix.end()); return OutContext.GetOrCreateSymbol(NameStr.str()); }