diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-05 22:14:31 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-05 22:14:31 +0000 |
commit | ec0a3a0bbfa4245712e8493c2fd090f09e4449e6 (patch) | |
tree | 5d84eeedffa31eb3cea3e8f69297051b3f861f78 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | e3a5ff1508d9feb9a41894d81b3f13291192e7c1 (diff) | |
download | bcm5719-llvm-ec0a3a0bbfa4245712e8493c2fd090f09e4449e6.tar.gz bcm5719-llvm-ec0a3a0bbfa4245712e8493c2fd090f09e4449e6.zip |
Remove the DwarfTable enum.
llvm-svn: 130959
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index dad581b2d29..31bf418178a 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -195,9 +195,6 @@ bool AsmPrinter::doInitialization(Module &M) { case ExceptionHandling::SjLj: DE = new DwarfSjLjException(this); return false; - case ExceptionHandling::DwarfTable: - DE = new DwarfTableException(this); - return false; case ExceptionHandling::DwarfCFI: DE = new DwarfCFIException(this); return false; |