From 2f9bc4f2d36ab8193ac8d9246377abac6a1ba08d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 10 Nov 2005 19:02:18 +0000 Subject: [PATCH] remove the M instance var git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24281 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Mangler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/VMCore/Mangler.cpp b/lib/VMCore/Mangler.cpp index d9585381508..03111803186 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 Names; -- 2.34.1