summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-11-27 02:25:20 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-11-27 02:25:20 +0000
commita3e61947b727f31490acf3c51e773225009de376 (patch)
tree83be7fb1ec2e105aa479bd22bb6141c85d9ccd53 /include
parent9fef0370c5ec8c9ec9c89a4ee8b4e92735530a48 (diff)
downloadllvm-a3e61947b727f31490acf3c51e773225009de376.tar.gz
llvm-a3e61947b727f31490acf3c51e773225009de376.tar.bz2
llvm-a3e61947b727f31490acf3c51e773225009de376.tar.xz
Remove dead argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/Mangler.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Target/Mangler.h b/include/llvm/Target/Mangler.h
index eee7bf6d69..fab41d2439 100644
--- a/include/llvm/Target/Mangler.h
+++ b/include/llvm/Target/Mangler.h
@@ -52,14 +52,13 @@ public:
/// and the specified global variable's name. If the global variable doesn't
/// have a name, this fills in a unique name for the global.
void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
- bool isImplicitlyPrivate, bool UseGlobalPrefix = true);
+ bool isImplicitlyPrivate);
/// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
/// and the specified name as the global variable name. GVName must not be
/// empty.
void getNameWithPrefix(SmallVectorImpl<char> &OutName, const Twine &GVName,
- ManglerPrefixTy PrefixTy = Mangler::Default,
- bool UseGlobalPrefix = true);
+ ManglerPrefixTy PrefixTy = Mangler::Default);
};
} // End llvm namespace