mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
now that the debug and eh emitters use a common .set counter,
we can eliminate "flavor". llvm-svn: 98011
This commit is contained in:
parent
99ca33d324
commit
183e87502e
@ -288,7 +288,7 @@ DbgScope::~DbgScope() {
|
||||
} // end llvm namespace
|
||||
|
||||
DwarfDebug::DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T)
|
||||
: DwarfPrinter(OS, A, T, "dbg"), ModuleCU(0),
|
||||
: DwarfPrinter(OS, A, T), ModuleCU(0),
|
||||
AbbreviationsSet(InitAbbreviationsSetSize), Abbreviations(),
|
||||
DIEValues(), StringPool(),
|
||||
SectionSourceLines(), didInitial(false), shouldEmit(false),
|
||||
|
@ -39,7 +39,7 @@ using namespace llvm;
|
||||
|
||||
DwarfException::DwarfException(raw_ostream &OS, AsmPrinter *A,
|
||||
const MCAsmInfo *T)
|
||||
: DwarfPrinter(OS, A, T, "eh"), shouldEmitTable(false),shouldEmitMoves(false),
|
||||
: DwarfPrinter(OS, A, T), shouldEmitTable(false),shouldEmitMoves(false),
|
||||
shouldEmitTableModule(false), shouldEmitMovesModule(false),
|
||||
ExceptionTimer(0) {
|
||||
if (TimePassesIsEnabled)
|
||||
|
@ -31,11 +31,10 @@
|
||||
#include "llvm/ADT/SmallString.h"
|
||||
using namespace llvm;
|
||||
|
||||
DwarfPrinter::DwarfPrinter(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T,
|
||||
const char *flavor)
|
||||
DwarfPrinter::DwarfPrinter(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T)
|
||||
: O(OS), Asm(A), MAI(T), TD(Asm->TM.getTargetData()),
|
||||
RI(Asm->TM.getRegisterInfo()), M(NULL), MF(NULL), MMI(NULL),
|
||||
SubprogramCount(0), Flavor(flavor) {}
|
||||
SubprogramCount(0) {}
|
||||
|
||||
|
||||
/// getDWLabel - Return the MCSymbol corresponding to the assembler temporary
|
||||
|
@ -66,12 +66,7 @@ protected:
|
||||
/// SubprogramCount - The running count of functions being compiled.
|
||||
unsigned SubprogramCount;
|
||||
|
||||
/// Flavor - A unique string indicating what dwarf producer this is, used to
|
||||
/// unique labels.
|
||||
const char * const Flavor;
|
||||
|
||||
DwarfPrinter(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T,
|
||||
const char *flavor);
|
||||
DwarfPrinter(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T);
|
||||
public:
|
||||
|
||||
//===------------------------------------------------------------------===//
|
||||
|
Loading…
Reference in New Issue
Block a user