commit | ecf58b9e3c4f0d1e0abc7aa7ce95dd42c674acee | [log] [tgz] |
---|---|---|
author | Rafael Espindola <rafael.espindola@gmail.com> | Thu May 05 20:48:31 2011 +0000 |
committer | Rafael Espindola <rafael.espindola@gmail.com> | Thu May 05 20:48:31 2011 +0000 |
tree | 3d61c9e465212640f0f0c91ba7426ddc92deb497 | |
parent | 2d57a6470181e7cc6396caae69e045cd0549d10e [diff] [blame] |
Implement a really simple DwarfSjLjException. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130947 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 63bfa2f..dad581b 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -193,6 +193,8 @@ case ExceptionHandling::None: return false; case ExceptionHandling::SjLj: + DE = new DwarfSjLjException(this); + return false; case ExceptionHandling::DwarfTable: DE = new DwarfTableException(this); return false;