Add method
authorChris Lattner <sabre@nondot.org>
Sat, 14 Feb 2004 00:30:31 +0000 (00:30 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 14 Feb 2004 00:30:31 +0000 (00:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11425 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Mangler.h

index 5b312f8ef447a7186a1e12b04bb109e98da429d6..2528420d47d479894bef7ec9e6ada0f6a480a81d 100644 (file)
@@ -1,4 +1,4 @@
-//===-- Mangler.h - Self-contained c/asm llvm name mangler ------*- C++ -*-===//
+//===-- Mangler.h - Self-contained llvm name mangler ------------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -7,25 +7,21 @@
 // 
 //===----------------------------------------------------------------------===//
 //
-// Unified name mangler for CWriter and assembly backends.
+// Unified name mangler for various backends.
 //
 //===----------------------------------------------------------------------===//
 
 #ifndef LLVM_SUPPORT_MANGLER_H
 #define LLVM_SUPPORT_MANGLER_H
 
-namespace llvm {
-
-class Value;
-class Module;
-
-} // End llvm namespace
-
 #include <map>
 #include <set>
 #include <string>
 
 namespace llvm {
+class Value;
+class Module;
+class GlobalValue;
 
 class Mangler {
   /// This keeps track of which global values have had their names
@@ -40,6 +36,8 @@ class Mangler {
   ValueMap Memo;
 
   unsigned Count;
+
+  void InsertName(GlobalValue *GV, std::map<std::string, GlobalValue*> &Names);
 public:
 
   // Mangler ctor - if AddUnderscorePrefix is true, then all public global