aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-15 01:32:03 +0000
committerChris Lattner <sabre@nondot.org>2005-11-15 01:32:03 +0000
commitd358cfc1bf2292922672ac35d4e897fe07de4785 (patch)
treef9da3ebb9e9a1ccda1395dba0e1caa6f79b8c91b /lib/VMCore
parentdbdbf0ce2eef7b6585397121f56d3845e04866d1 (diff)
downloadexternal_llvm-d358cfc1bf2292922672ac35d4e897fe07de4785.zip
external_llvm-d358cfc1bf2292922672ac35d4e897fe07de4785.tar.gz
external_llvm-d358cfc1bf2292922672ac35d4e897fe07de4785.tar.bz2
Fix handling of multiple unnamed globals with the same type
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Mangler.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/VMCore/Mangler.cpp b/lib/VMCore/Mangler.cpp
index 5257ca1..f68959a 100644
--- a/lib/VMCore/Mangler.cpp
+++ b/lib/VMCore/Mangler.cpp
@@ -132,6 +132,11 @@ std::string Mangler::getValueName(const GlobalValue *GV) {
// - Otherwise, mangling occurs if global collides with existing name.
if (isa<Function>(GV) && cast<Function>(GV)->getIntrinsicID()) {
Name = GV->getName(); // Is an intrinsic function
+ } else if (!GV->hasName()) {
+ // Must mangle the global into a unique ID.
+ unsigned TypeUniqueID = getTypeID(GV->getType());
+ static unsigned GlobalID = 0;
+ Name = "__unnamed_" + utostr(TypeUniqueID) + "_" + utostr(GlobalID++);
} else if (!MangledGlobals.count(GV)) {
Name = makeNameProper(GV->getName(), Prefix);
} else {
@@ -144,10 +149,8 @@ std::string Mangler::getValueName(const GlobalValue *GV) {
void Mangler::InsertName(GlobalValue *GV,
std::map<std::string, GlobalValue*> &Names) {
- if (!GV->hasName()) { // We must mangle unnamed globals.
- MangledGlobals.insert(GV);
+ if (!GV->hasName()) // We must mangle unnamed globals.
return;
- }
// Figure out if this is already used.
GlobalValue *&ExistingValue = Names[GV->getName()];