aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/Mangler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/Mangler.cpp')
-rw-r--r--lib/Target/Mangler.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/Target/Mangler.cpp b/lib/Target/Mangler.cpp
index 3eab58cc36..c630062bdf 100644
--- a/lib/Target/Mangler.cpp
+++ b/lib/Target/Mangler.cpp
@@ -179,3 +179,16 @@ std::string Mangler::getNameWithPrefix(const GlobalValue *GV,
getNameWithPrefix(Buf, GV, isImplicitlyPrivate);
return std::string(Buf.begin(), Buf.end());
}
+
+/// getSymbol - Return the MCSymbol for the specified global value. This
+/// symbol is the main label that is the address of the global.
+MCSymbol *Mangler::getSymbol(const GlobalValue *GV) {
+ SmallString<60> NameStr;
+ getNameWithPrefix(NameStr, GV, false);
+ if (!GV->hasPrivateLinkage())
+ return Context.GetOrCreateSymbol(NameStr.str());
+
+ return Context.GetOrCreateTemporarySymbol(NameStr.str());
+}
+
+