add a name mangler object

llvm-svn: 22370
This commit is contained in:
Chris Lattner 2005-07-11 03:11:10 +00:00
parent 8ffb66111c
commit 93bf2de35b
1 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,7 @@
namespace llvm {
class GlobalVariable;
class Mangler;
/// ELFWriter - This class implements the common target-independent code for
/// writing ELF files. Targets should derive a class from this to
@ -35,6 +36,10 @@ namespace llvm {
///
TargetMachine &TM;
/// Mang - The object used to perform name mangling for this module.
///
Mangler *Mang;
//===------------------------------------------------------------------===//
// Properties to be set by the derived class ctor, used to configure the
// ELFWriter.