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 | 4d728127fb7d056b86e771c12c5d23cfd6417ffb (patch) | |
tree | 7d099be4d942b3583470e630462f032c51b17361 /llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | 9889c1eb9e566e06235c28c4dade5c5f266eb40d (diff) | |
download | bcm5719-llvm-4d728127fb7d056b86e771c12c5d23cfd6417ffb.tar.gz bcm5719-llvm-4d728127fb7d056b86e771c12c5d23cfd6417ffb.zip |
now that the debug and eh emitters use a common .set counter,
we can eliminate "flavor".
llvm-svn: 98011
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp index 6da90bb28c1..8d1ba7d3545 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -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) |