summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/TargetMachine.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2016-09-20 16:04:50 +0000
committerEric Christopher <echristo@gmail.com>2016-09-20 16:04:50 +0000
commit0be7793d75378163f6f6e4724c94370971d342a0 (patch)
tree5d2cdcd596d95182ed095c838196bcc6c25d9db4 /llvm/lib/Target/TargetMachine.cpp
parentf83a19ffc265df124cffe7a91c86d5ffbdc8b955 (diff)
downloadbcm5719-llvm-0be7793d75378163f6f6e4724c94370971d342a0.tar.gz
bcm5719-llvm-0be7793d75378163f6f6e4724c94370971d342a0.zip
Remove extra argument used once on TargetMachine::getNameWithPrefix and inline the result into the singular caller.
llvm-svn: 281981
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r--llvm/lib/Target/TargetMachine.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp
index 17caed97391..47c5a56ce09 100644
--- a/llvm/lib/Target/TargetMachine.cpp
+++ b/llvm/lib/Target/TargetMachine.cpp
@@ -199,9 +199,8 @@ TargetIRAnalysis TargetMachine::getTargetIRAnalysis() {
}
void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name,
- const GlobalValue *GV, Mangler &Mang,
- bool MayAlwaysUsePrivate) const {
- if (MayAlwaysUsePrivate || !GV->hasPrivateLinkage()) {
+ const GlobalValue *GV, Mangler &Mang) const {
+ if (!GV->hasPrivateLinkage()) {
// Simple case: If GV is not private, it is not important to find out if
// private labels are legal in this case or not.
Mang.getNameWithPrefix(Name, GV, false);
OpenPOWER on IntegriCloud