diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-09 00:00:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-09 00:00:15 +0000 |
commit | c3421bb80559c3103e5e52af11a92a02848b13b7 (patch) | |
tree | 3fd998ede224b09cbf56471631c501cb5506bf81 /lib/CodeGen/AsmPrinter/DwarfPrinter.cpp | |
parent | 0d50c7620d92762eaa5c9dedd07c94f5a6a19935 (diff) |
now that the debug and eh emitters use a common .set counter,
we can eliminate "flavor".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98011 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfPrinter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfPrinter.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp index 0f68c58b8d..1d21488e2b 100644 --- a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp @@ -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 |