mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Add method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11425 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a6acb4f5fd
commit
d11e647257
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user