diff options
-rw-r--r-- | lib/VMCore/Mangler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/Mangler.cpp b/lib/VMCore/Mangler.cpp index d958538150..0311180318 100644 --- a/lib/VMCore/Mangler.cpp +++ b/lib/VMCore/Mangler.cpp @@ -118,8 +118,8 @@ void Mangler::InsertName(GlobalValue *GV, } -Mangler::Mangler(Module &m, const char *prefix) - : M(m), Prefix(prefix), TypeCounter(0), Count(0) { +Mangler::Mangler(Module &M, const char *prefix) + : Prefix(prefix), Count(0), TypeCounter(0) { // Calculate which global values have names that will collide when we throw // away type information. std::map<std::string, GlobalValue*> Names; |