aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Support/Mangler.h10
-rw-r--r--lib/VMCore/Mangler.cpp10
2 files changed, 1 insertions, 19 deletions
diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h
index 1de1905b60..33ed102002 100644
--- a/include/llvm/Support/Mangler.h
+++ b/include/llvm/Support/Mangler.h
@@ -50,11 +50,6 @@ class Mangler {
///
unsigned Count;
- /// TypeMap - If the client wants us to unique types, this keeps track of the
- /// current assignments and TypeCounter keeps track of the next id to assign.
- DenseMap<const Type*, unsigned> TypeMap;
- unsigned TypeCounter;
-
/// AcceptableChars - This bitfield contains a one for each character that is
/// allowed to be part of an unmangled name.
unsigned AcceptableChars[256/32];
@@ -99,11 +94,6 @@ public:
///
std::string makeNameProper(const std::string &x, const char *Prefix = 0,
const char *PrivatePrefix = 0);
-
-private:
- /// getTypeID - Return a unique ID for the specified LLVM type.
- ///
- unsigned getTypeID(const Type *Ty);
};
} // End llvm namespace
diff --git a/lib/VMCore/Mangler.cpp b/lib/VMCore/Mangler.cpp
index 5a4df62f15..625c9c3a1a 100644
--- a/lib/VMCore/Mangler.cpp
+++ b/lib/VMCore/Mangler.cpp
@@ -128,14 +128,6 @@ std::string Mangler::makeNameProper(const std::string &X, const char *Prefix,
return Result;
}
-/// getTypeID - Return a unique ID for the specified LLVM type.
-///
-unsigned Mangler::getTypeID(const Type *Ty) {
- unsigned &E = TypeMap[Ty];
- if (E == 0) E = ++TypeCounter;
- return E;
-}
-
std::string Mangler::getValueName(const GlobalValue *GV, const char *Suffix) {
// Check to see whether we've already named V.
std::string &Name = Memo[GV];
@@ -162,7 +154,7 @@ std::string Mangler::getValueName(const GlobalValue *GV, const char *Suffix) {
Mangler::Mangler(Module &M, const char *prefix, const char *privatePrefix)
: Prefix(prefix), PrivatePrefix (privatePrefix), UseQuotes(false),
- PreserveAsmNames(false), Count(0), TypeCounter(0) {
+ PreserveAsmNames(false), Count(0) {
std::fill(AcceptableChars, array_endof(AcceptableChars), 0);
// Letters and numbers are acceptable.