diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-28 07:41:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-28 07:41:18 +0000 |
commit | f81add3fdf19ebf01e1567b0b56934c1d86700c5 (patch) | |
tree | 53e7313f76895604314fe4eb2b453258d6c57818 /llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | 6de8201a63a4376b23b46e672184bcc8523be996 (diff) | |
download | bcm5719-llvm-f81add3fdf19ebf01e1567b0b56934c1d86700c5.tar.gz bcm5719-llvm-f81add3fdf19ebf01e1567b0b56934c1d86700c5.zip |
move these out of their own timer groups into the 'uncategorized' groups.
llvm-svn: 92206
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp index 1c8b8f46472..d01f300990c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -35,19 +35,13 @@ #include "llvm/ADT/StringExtras.h" using namespace llvm; -static TimerGroup &getDwarfTimerGroup() { - static TimerGroup DwarfTimerGroup("DWARF Exception"); - return DwarfTimerGroup; -} - DwarfException::DwarfException(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T) : Dwarf(OS, A, T, "eh"), shouldEmitTable(false), shouldEmitMoves(false), shouldEmitTableModule(false), shouldEmitMovesModule(false), ExceptionTimer(0) { if (TimePassesIsEnabled) - ExceptionTimer = new Timer("DWARF Exception Writer", - getDwarfTimerGroup()); + ExceptionTimer = new Timer("DWARF Exception Writer"); } DwarfException::~DwarfException() { |