[llvm-commits] CVS: llvm/lib/VMCore/Mangler.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Nov 10 11:02:29 PST 2005



Changes in directory llvm/lib/VMCore:

Mangler.cpp updated: 1.20 -> 1.21
---
Log message:

remove the M instance var


---
Diffs of the changes:  (+2 -2)

 Mangler.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/VMCore/Mangler.cpp
diff -u llvm/lib/VMCore/Mangler.cpp:1.20 llvm/lib/VMCore/Mangler.cpp:1.21
--- llvm/lib/VMCore/Mangler.cpp:1.20	Thu Nov 10 12:48:58 2005
+++ llvm/lib/VMCore/Mangler.cpp	Thu Nov 10 13:02:18 2005
@@ -118,8 +118,8 @@
 }
 
 
-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;






More information about the llvm-commits mailing list