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 | 254784f9e0ae59fc060ccd54b39cd1e94ac91356 (patch) | |
tree | df1e2151a9a0c85edf607aa6a94a093c9de8a7ef /lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | ef7b4685f17e97e32889711a22f11d4494a4e4f0 (diff) | |
download | external_llvm-254784f9e0ae59fc060ccd54b39cd1e94ac91356.tar.gz external_llvm-254784f9e0ae59fc060ccd54b39cd1e94ac91356.tar.bz2 external_llvm-254784f9e0ae59fc060ccd54b39cd1e94ac91356.zip |
Remove the DwarfTable enum.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130959 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index dad581b2d2..31bf418178 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/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; |