summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-11-28 19:35:07 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-11-28 19:35:07 +0000
commite195f6c29f9f14e06c26947cca9eb8005affc548 (patch)
tree947091cdcb198d308d6496d09e53ec0939e72d4b /include
parentef70d2a39399a33e4cb42f7bc98a2aa793dd7e65 (diff)
downloadllvm-e195f6c29f9f14e06c26947cca9eb8005affc548.tar.gz
llvm-e195f6c29f9f14e06c26947cca9eb8005affc548.tar.bz2
llvm-e195f6c29f9f14e06c26947cca9eb8005affc548.tar.xz
Remove an always true parameter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195931 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 4bda0f1603..3641dc9542 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.